Network server sending raw data to clients.

This commit is contained in:
antirez
2013-01-10 20:58:13 +01:00
parent 539039f037
commit b5ff48e5f5
5 changed files with 601 additions and 10 deletions

View File

@ -5,11 +5,11 @@ PROGNAME=dump1090
all: dump1090
dump1090.o: dump1090.c
$(CC) $(CFLAGS) dump1090.c -c -o dump1090.o
%.o: %.c
$(CC) $(CFLAGS) -c $<
dump1090: dump1090.o
$(CC) -g -o dump1090 dump1090.o $(LIBS)
dump1090: dump1090.o anet.o
$(CC) -g -o dump1090 dump1090.o anet.o $(LIBS)
clean:
rm -f *.o dump1090