sslh/Makefile

24 lines
279 B
Makefile
Raw Normal View History

# Configuration
USELIBWRAP=1 # Use libwrap?
# End of configuration -- the rest should take care of
# itself
CC = gcc
#LIBS=-lnet
LIBS=
ifneq ($(strip $(USELIBWRAP)),)
LIBS:=$(LIBS) -lwrap
CFLAGS=-DLIBWRAP
endif
all:
$(CC) $(CFLAGS) -o sslh sslh.c $(LIBS)
strip sslh