Remove distribution specific variables in Makefile

Remove everything related to RPM_OPT_FLAGS variable in Makefile.
This commit is contained in:
Thomas Preud'homme 2011-10-03 19:34:46 +02:00
parent b455f99538
commit d0e37451f5
1 changed files with 1 additions and 5 deletions

View File

@ -15,12 +15,8 @@
#
VERSION = $(shell awk 'END { print $$1 }' VERSION)
CFLAGS = -Wall -Wextra -DVERSION=\"$(VERSION)\" $(RPM_OPT_FLAGS)
CFLAGS = -Wall -Wextra -DVERSION=\"$(VERSION)\"
ifeq ($(RPM_OPT_FLAGS),)
CFLAGS += -g
LDFLAGS += -g
endif
pstack : pstack.c
$(CC) $(CFLAGS) -o pstack pstack.c