diff --git a/Makefile b/Makefile index 62c261f..8a14b55 100644 --- a/Makefile +++ b/Makefile @@ -1,15 +1,15 @@ CFLAGS=-O2 -g -Wall -W `pkg-config --cflags librtlsdr` LIBS=`pkg-config --libs librtlsdr` -lpthread -lm CC=gcc -PROGNAME=mode1090 +PROGNAME=dump1090 -all: mode1090 +all: dump1090 -mode1090.o: mode1090.c - $(CC) $(CFLAGS) mode1090.c -c -o mode1090.o +dump1090.o: dump1090.c + $(CC) $(CFLAGS) dump1090.c -c -o dump1090.o -mode1090: mode1090.o - $(CC) -g -o mode1090 mode1090.o $(LIBS) +dump1090: dump1090.o + $(CC) -g -o dump1090 dump1090.o $(LIBS) clean: - rm -f *.o mode1090 + rm -f *.o dump1090 diff --git a/README b/README index 3da9e92..12281f3 100644 --- a/README +++ b/README @@ -179,7 +179,7 @@ are lower than the specified for more than 32 samples. Use it like this: - cat big.bin | ./mode1090 --snip 25 > small.bin + cat big.bin | ./dump1090 --snip 25 > small.bin I used it in order to create a small test file to include inside this program source code distribution. @@ -187,7 +187,7 @@ program source code distribution. Contributing --- -Mode1090 was written during some free time during xmas 2012, it is an hobby +Dump1090 was written during some free time during xmas 2012, it is an hobby project so I'll be able to address issues and improve it only during free time, however you are incouraged to send pull requests in order to improve the program. A good starting point can be the TODO list included in diff --git a/mode1090.c b/dump1090.c similarity index 100% rename from mode1090.c rename to dump1090.c