Add includes for DESTDIR only in root Makefile
Signed-off-by: Jason Zaman <jason@perfinion.com>
This commit is contained in:
parent
74093beab0
commit
9a7763e186
7
Makefile
7
Makefile
|
@ -8,6 +8,13 @@ ifeq ($(DEBUG),1)
|
|||
export LDFLAGS = -g
|
||||
endif
|
||||
|
||||
ifneq ($(DESTDIR),)
|
||||
CFLAGS += -I$(DESTDIR)/usr/include
|
||||
LDFLAGS += -L$(DESTDIR)/usr/lib
|
||||
export CFLAGS
|
||||
export LDFLAGS
|
||||
endif
|
||||
|
||||
all install relabel clean test indent:
|
||||
@for subdir in $(SUBDIRS); do \
|
||||
(cd $$subdir && $(MAKE) $@) || exit 1; \
|
||||
|
|
Loading…
Reference in New Issue