Makefile (361B)
1 2 INCLUDES=-I. 3 4 CFLAGS= -g -O2 -Wall $(INCLUDES) 5 6 OBJS= getbits.o input.o getmesg.o main.o serv.o 7 8 acarsdec: $(OBJS) 9 $(CC) -o $@ $(OBJS) -lm -lsndfile -lasound 10 11 main.o: main.c version.h 12 13 clean: 14 rm -f *.o acarsdec 15 16 getbits.o: acarsdec.h getbits.c 17 getmesg.o: acarsdec.h getmesg.c 18 main.o: acarsdec.h main.c 19 input.o: acarsdec.h input.c 20 serv.o: acarsdec.h serv.c 21