summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile4
-rw-r--r--test/Makefile2
2 files changed, 5 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 788987c..1ce692c 100644
--- a/Makefile
+++ b/Makefile
@@ -20,9 +20,13 @@ make: $(OBJECTS)
ld -r $(OBJECTS_FINAL) -o $(PROJECT).o
%.o: %.c
+ @mkdir -p `dirname $(BUILD_DIR)$@`
$(CC) $(CFLAGS) $(INCLUDE) -c $< -o $(BUILD_DIR)$@
clean:
rm -f $(PROJECT)
rm -f $(OBJECTS_FINAL)
rm -f *.o
+
+distclean: clean
+ rm -rf $(BUILD_DIR)
diff --git a/test/Makefile b/test/Makefile
index 05714ae..c447b55 100644
--- a/test/Makefile
+++ b/test/Makefile
@@ -1,5 +1,5 @@
CC=gcc
-CFLAGS=-I../
+CFLAGS=-std=gnu11 -I../
#LDFLAGS= `pkg-config --libs libusb` -L../../../r820t -lr820t -Wl,-rpath=../../../r820t
LDFLAGS=`pkg-config --libs libusb` `sdl2-config --cflags --libs` -lrtlsdr -lm ../radiola.o -lasound
SOURCE = $(wildcard *.c)