]> git.ipfire.org Git - thirdparty/squid.git/blame - helpers/external_acl/ip_user/Makefile.separate
Cleanup: zap CVS Id tags
[thirdparty/squid.git] / helpers / external_acl / ip_user / Makefile.separate
CommitLineData
262a0e14 1# $Id$
c6588c68 2CC=gcc
3CFLAGS=-Wall
4LIBS=
5# For Solaris
6# LIBS=-lnsl -lsocket
7
8ip_user_check: ip_user.h dict.o match.c main.c
9 $(CC) $(CFLAGS) -o ip_user_check dict.o match.c main.c $(LIBS)
10
11dict.o: ip_user.h dict.c
12 $(CC) $(CFLAGS) -c dict.c
13
14clean:
15 rm -f dict.o ip_user_check
16