Initial commit - acarsdec-1.1, upstream vanilla version

This commit is contained in:
Tomas Suchan 2012-07-18 01:20:23 +02:00
commit 8223d9e9c8
9 changed files with 1172 additions and 0 deletions

20
Makefile Normal file
View file

@ -0,0 +1,20 @@
INCLUDES=-I.
CFLAGS= -g -O2 -Wall $(INCLUDES)
OBJS= getbits.o input.o getmesg.o main.o serv.o
acarsdec: $(OBJS)
$(CC) -o $@ $(OBJS) -lm -lsndfile -lasound
main.o: main.c version.h
clean:
rm -f *.o acarsdec
getbits.o: acarsdec.h getbits.c
getmesg.o: acarsdec.h getmesg.c
main.o: acarsdec.h main.c
input.o: acarsdec.h input.c
serv.o: acarsdec.h serv.c