mirror of
https://github.com/moparisthebest/sslh
synced 2024-11-13 12:45:05 -05:00
b965d735b8
Fixed zombie generation. Added support scripts (), Makefile. Changed all 'connexions' to 'connections' to please pesky users. Damn users.
24 lines
279 B
Makefile
24 lines
279 B
Makefile
# 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
|
|
|
|
|