Hack the compiler to support 'abstract' keyword for mgc version. Abstract classes...
[IRC.git] / Robust / src / Tests / setjmpTest / makefile
1 all: sj
2
3 sj: sj.o Queue.o
4         gcc -g sj.o Queue.o -o sj
5
6 Queue.o: Queue.c Queue.h
7         gcc -g -c Queue.c -o Queue.o
8
9 sj.o: sj.c Queue.h
10         gcc -g -c sj.c -o sj.o
11
12 clean:
13         rm -f sj
14         rm -f *.o
15         rm -f *~