root/trunk/Makefile

Revision 30, 378 bytes (checked in by xammy, 5 years ago)

Added toUtf8() implementation to conduits.

Line 
1 BUD=bud -op -L-lfcgi -L-ltango-base-dmd -I../
2 EXAMPLES= \
3     SimpleLoop \
4     SimpleApp \
5     SimpleThread \
6     VerboseLoop \
7     VerboseApp \
8     VerboseThread \
9     SimpleException
10
11 all:
12     for EXAMPLE in ${EXAMPLES}; do echo $${EXAMPLE}; ${BUD} $${EXAMPLE}; mv -f $${EXAMPLE} $${EXAMPLE}.fcgi; done
13
14 clean:
15     rm -f `find . -name '*.o'`
16     for EXAMPLE in ${EXAMPLES}; do rm -f $${EXAMPLE}.fcgi; done
Note: See TracBrowser for help on using the browser.