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