2010-09-01 13:47:26 +00:00
|
|
|
CC=cc
|
2011-02-18 13:03:45 +00:00
|
|
|
# CC=clang
|
2010-02-20 23:20:55 +00:00
|
|
|
|
2010-09-18 16:08:02 +00:00
|
|
|
default:
|
|
|
|
@/bin/echo -e "Usage:\n\tmake diet - compile with diet libc\n\tmake lib - compile with normal gnu libc"
|
|
|
|
|
|
|
|
diet:
|
2010-09-01 15:16:35 +00:00
|
|
|
/opt/diet/bin/diet ${CC} -static -c -Os parser.c -o libpsyc.o -DDEBUG
|
2010-02-20 23:20:55 +00:00
|
|
|
/opt/diet/bin/diet ar rcs libpsyc.a libpsyc.o
|
|
|
|
|
|
|
|
lib:
|
2011-04-16 09:30:26 +00:00
|
|
|
${CC} -static -c -Os parser.c -lc -o libpsyc.o -DDEBUG -I../include
|
2010-02-20 23:20:55 +00:00
|
|
|
ar rcs libpsyc.a libpsyc.o
|
2011-04-16 11:49:47 +00:00
|
|
|
|
|
|
|
match: match.c
|
|
|
|
${CC} -o $@ -DTEST $<
|
|
|
|
|
|
|
|
it: match
|