diff options
author | Javier Martinez Canillas <martinez.javier@gmail.com> | 2010-12-05 02:03:47 +0100 |
---|---|---|
committer | Javier Martinez Canillas <martinez.javier@gmail.com> | 2010-12-05 02:03:47 +0100 |
commit | a7599e59aef058f861fd21b97b6d876bd909deae (patch) | |
tree | 87ba6b13bfc104aa5051d1ecafe91bc75c304d46 /shortprint/Makefile | |
parent | 6984abe5ef10ff6b3a72faa25ed2cf85fd9ac5bd (diff) | |
download | ldd3-a7599e59aef058f861fd21b97b6d876bd909deae.tar.gz |
shortprint: Makefile: Change CFLAGS to EXTRA_CFLAGS
Diffstat (limited to 'shortprint/Makefile')
-rw-r--r-- | shortprint/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/shortprint/Makefile b/shortprint/Makefile index 42a9b53..313cc17 100644 --- a/shortprint/Makefile +++ b/shortprint/Makefile @@ -1,7 +1,7 @@ # Comment/uncomment the following line to disable/enable debugging #DEBUG = y -CFLAGS += -O2 -I.. +EXTRA_CFLAGS += -O2 -I.. ifneq ($(KERNELRELEASE),) # call from kernel build system @@ -23,7 +23,7 @@ clean: rm -rf *.o *~ core .depend .*.cmd *.ko *.mod.c .tmp_versions depend .depend dep: - $(CC) $(CFLAGS) -M *.c > .depend + $(CC) $(EXTRA_CFLAGS) -M *.c > .depend ifeq (.depend,$(wildcard .depend)) |