mirror of
https://github.com/brmlab/acarsdec.git
synced 2025-08-02 14:13:37 +02:00
Initial commit - acarsdec-1.1, upstream vanilla version
This commit is contained in:
commit
8223d9e9c8
9 changed files with 1172 additions and 0 deletions
20
Makefile
Normal file
20
Makefile
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue