mp3decoder finally passes the flow-down rule checking.
[IRC.git] / Robust / src / Tests / Queue / makefile
1 QDIR=../../Runtime
2 DEFS= -D "RUNMALLOC=malloc" -D "RUNFREE=free" -D "DEBUG_QUEUE="
3
4 all: a.out
5
6 a.out: testMain.o queue.o
7         gcc testMain.o queue.o
8
9 queue.o: $(QDIR)/Queue.h $(QDIR)/Queue.c
10         gcc -c -I$(QDIR) $(DEFS) $(QDIR)/Queue.c -o queue.o
11
12 testMain.o: testMain.c $(QDIR)/Queue.h
13         gcc -c -I$(QDIR) $(DEFS) testMain.c -o testMain.o
14
15 clean:
16         rm -f a.out
17         rm -f *.o
18         rm -f *~