summaryrefslogtreecommitdiffstats
path: root/contrib/ipfilter/samples/Makefile
blob: 1dad07900c86daeef30d029f38365032318da378 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
CC=gcc
all:
	@echo "Please do one of the following:"
	@echo "make bsd"
	@echo "make bsdi"
	@echo "make freebsd"
	@echo "make freebsd22"
	@echo "make netbsd"
	@echo "make openbsd"
	@echo "make sunos4"
	@echo "make sunos5"

sunos5:
	$(CC) -DSOLARIS2=`uname -r | sh -c 'IFS=. read j n x; echo $$n'` \
		-I.. userauth.c -o userauth -lsocket -lnsl
	$(CC) -DSOLARIS2=`uname -r | sh -c 'IFS=. read j n x; echo $$n'` \
		-I.. proxy.c -o proxy -lsocket -lnsl

freebsd freebsd22 netbsd bsd bsdi sunos4 openbsd:
	$(CC) -I.. userauth.c -o userauth
	$(CC) -I.. proxy.c -o proxy

clean:
	/bin/rm -f userauth proxy
OpenPOWER on IntegriCloud