aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorKay Sievers <kay.sievers@suse.de>2005-07-06 21:36:21 +0200
committerKay Sievers <kay.sievers@suse.de>2005-07-06 21:36:21 +0200
commit1196e46c339e0df96ee972a5bae5cc8f84bf8990 (patch)
treea8d8a80e765950866e117d6c7f2e8723fc62acb7 /Makefile
parent8815afa1df0dbb0b366156d4cebc56468906118c (diff)
downloadudev-1196e46c339e0df96ee972a5bae5cc8f84bf8990.tar.gz
we want to provide OPTFLAGS
Signed-off-by: Kay Sievers <kay.sievers@suse.de>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile17
1 files changed, 8 insertions, 9 deletions
diff --git a/Makefile b/Makefile
index 25e08252..fd2a3f2b 100644
--- a/Makefile
+++ b/Makefile
@@ -41,6 +41,7 @@ EXTRAS=
# make the build silent. Set this to something else to make it noisy again.
V=false
+VERSION = 060
ROOT = udev
DAEMON = udevd
SENDER = udevsend
@@ -51,7 +52,6 @@ CONTROL = udevcontrol
INFO = udevinfo
TESTER = udevtest
STARTER = udevstart
-VERSION = 060
RELEASE_NAME = $(ROOT)-$(VERSION)
LOCAL_CFG_DIR = etc/udev
DESTDIR =
@@ -102,19 +102,18 @@ GCCINCDIR := ${shell LC_ALL=C $(CC) -print-search-dirs | sed -ne "s/install: \(.
# code taken from uClibc to determine the libgcc.a filename
GCC_LIB := $(shell $(CC) -print-libgcc-file-name )
-# use '-Os' optimization if available, else use -O2
-OPTIMIZATION := ${shell if $(CC) -Os -S -o /dev/null -xc /dev/null >/dev/null 2>&1; \
- then echo "-Os"; else echo "-O2" ; fi}
-
# check if compiler option is supported
-cc-supports = ${shell if $(CC) ${1} -S -o /dev/null -xc /dev/null > /dev/null 2>&1; then echo "$(1)"; fi;}
+cc-supports = ${shell if $(CC) ${1} -S -o /dev/null -xc /dev/null > /dev/null 2>&1; then echo "$(1)"; else echo "$(2)"; fi;}
CFLAGS += -Wall -fno-builtin -Wchar-subscripts -Wpointer-arith -Wstrict-prototypes -Wsign-compare
-CFLAGS += $(call cc-supports,-Wno-pointer-sign)
-CFLAGS += $(call cc-supports,-Wdeclaration-after-statement)
+CFLAGS += $(call cc-supports, -Wno-pointer-sign, )
+CFLAGS += $(call cc-supports, -Wdeclaration-after-statement, )
CFLAGS += -pipe
CFLAGS += -D_GNU_SOURCE
+# use '-Os' optimization if available, else use -O2
+OPTFLAGS := $(call cc-supports, -Os, -O2)
+
HEADERS = \
udev.h \
udev_utils.h \
@@ -165,7 +164,7 @@ ifeq ($(strip $(DEBUG)),true)
LDFLAGS += -Wl
STRIPCMD = /bin/true -Since_we_are_debugging
else
- CFLAGS += $(OPTIMIZATION) -fomit-frame-pointer
+ CFLAGS += $(OPTFLAGS) -fomit-frame-pointer
LDFLAGS += -s -Wl
STRIPCMD = $(STRIP) -s --remove-section=.note --remove-section=.comment
endif