diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2003-01-26 14:03:40 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2003-01-26 14:03:40 +0100 |
commit | 2da0c04c7cb427d501394ac2f666ce7bfafd7ac9 (patch) | |
tree | 5a7ad8ca417fcf034ec062eaced0d7fb1d2af136 /libdtv | |
parent | e2540aa89883eb3cd4f14fba83bbac88426e65b9 (diff) | |
download | vdr-2da0c04c7cb427d501394ac2f666ce7bfafd7ac9.tar.gz vdr-2da0c04c7cb427d501394ac2f666ce7bfafd7ac9.tar.bz2 |
Fixed handling user defined CFLAGS in libdtv/libvdr/Makefile
Diffstat (limited to 'libdtv')
-rw-r--r-- | libdtv/liblx/Makefile | 4 | ||||
-rw-r--r-- | libdtv/libvdr/Makefile | 3 |
2 files changed, 4 insertions, 3 deletions
diff --git a/libdtv/liblx/Makefile b/libdtv/liblx/Makefile index 2531708a..d06ee091 100644 --- a/libdtv/liblx/Makefile +++ b/libdtv/liblx/Makefile @@ -27,8 +27,8 @@ # # # -CC = gcc -CFLAGS = -O2 -g -pedantic -Wmissing-prototypes -Wstrict-prototypes \ +CC ?= gcc +CFLAGS ?= -O2 -g -pedantic -Wmissing-prototypes -Wstrict-prototypes \ -Wimplicit -D__USE_FIXED_PROTOTYPES__ # -DDEBUG diff --git a/libdtv/libvdr/Makefile b/libdtv/libvdr/Makefile index 0f2ad721..6eebedd4 100644 --- a/libdtv/libvdr/Makefile +++ b/libdtv/libvdr/Makefile @@ -29,8 +29,9 @@ # CC ?= gcc CFLAGS ?= -O2 -g -Wmissing-prototypes -Wstrict-prototypes \ - -Wimplicit -D__USE_FIXED_PROTOTYPES__ -I../include # -DDEBUG + -Wimplicit -D__USE_FIXED_PROTOTYPES__ # -DDEBUG +CFLAGS += -I../include AR = ar ARFLAGS = r |