]> git.ipfire.org Git - thirdparty/squid.git/blob - helpers/external_acl/ip_user/Makefile.separate
Import of fix-ranges branch
[thirdparty/squid.git] / helpers / external_acl / ip_user / Makefile.separate
1 # $Id: Makefile.separate,v 1.2 2003/01/23 00:36:01 robertc Exp $
2 CC=gcc
3 CFLAGS=-Wall
4 LIBS=
5 # For Solaris
6 # LIBS=-lnsl -lsocket
7
8 ip_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
11 dict.o: ip_user.h dict.c
12 $(CC) $(CFLAGS) -c dict.c
13
14 clean:
15 rm -f dict.o ip_user_check
16