mirror of
https://github.com/moparisthebest/sslh
synced 2024-11-24 10:02:16 -05:00
Makefile: fix CPPFLAGS handling
This code doesn't respect CPPFLAGS at all. Fix that and move the existing -D flags to the right variable. Signed-off-by: Mike Frysinger <vapier@gentoo.org>
This commit is contained in:
parent
4fafb3d376
commit
8252ecf307
6
Makefile
6
Makefile
@ -23,18 +23,18 @@ OBJS=common.o sslh-main.o probe.o
|
||||
|
||||
ifneq ($(strip $(USELIBWRAP)),)
|
||||
LIBS:=$(LIBS) -lwrap
|
||||
CFLAGS:=$(CFLAGS) -DLIBWRAP
|
||||
CPPFLAGS+=-DLIBWRAP
|
||||
endif
|
||||
|
||||
ifneq ($(strip $(USELIBCONFIG)),)
|
||||
LIBS:=$(LIBS) -lconfig
|
||||
CFLAGS:=$(CFLAGS) -DLIBCONFIG
|
||||
CPPFLAGS+=-DLIBCONFIG
|
||||
endif
|
||||
|
||||
all: sslh $(MAN) echosrv
|
||||
|
||||
.c.o: *.h
|
||||
$(CC) $(CFLAGS) -c $<
|
||||
$(CC) $(CFLAGS) $(CPPFLAGS) -c $<
|
||||
|
||||
version.h:
|
||||
./genver.sh >version.h
|
||||
|
Loading…
Reference in New Issue
Block a user