git ssb

0+

cel / sslh



Tree: b965d735b8cede5dfc93947da5c59e562aceb559

Files: b965d735b8cede5dfc93947da5c59e562aceb559 / Makefile

279 bytesRaw
1# Configuration
2
3USELIBWRAP=1 # Use libwrap?
4
5
6# End of configuration -- the rest should take care of
7# itself
8
9CC = gcc
10
11#LIBS=-lnet
12LIBS=
13
14ifneq ($(strip $(USELIBWRAP)),)
15 LIBS:=$(LIBS) -lwrap
16 CFLAGS=-DLIBWRAP
17endif
18
19all:
20 $(CC) $(CFLAGS) -o sslh sslh.c $(LIBS)
21 strip sslh
22
23
24

Built with git-ssb-web