diff options
author | Derecho <derecho@sector5d.org> | 2015-10-27 11:47:16 +0100 |
---|---|---|
committer | Derecho <derecho@sector5d.org> | 2015-10-27 11:47:16 +0100 |
commit | c2c267b5c9121d54d0a4358ecff88babd3b05d13 (patch) | |
tree | 7503db15a306a8154a62824a94f6db99db72c648 /test/Makefile | |
parent | 881b5d3ef77ff0f3da59f68085f21626d4fe5b2d (diff) | |
download | radiola-c2c267b5c9121d54d0a4358ecff88babd3b05d13.tar.gz radiola-c2c267b5c9121d54d0a4358ecff88babd3b05d13.zip |
Compile test programs with C11 support
(Using the less strict GNU standard)
Diffstat (limited to 'test/Makefile')
-rw-r--r-- | test/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
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) |