1###
2# This program is copyright Alec Muffett 1993. The author disclaims all
3# responsibility or liability with respect to it's usage or its effect
4# upon hardware or computer systems, and maintains copyright as set out
5# in the "LICENCE" document which accompanies distributions of Crack v4.0
6# and upwards.
7###
8
9LIB=	libcrack.a
10OBJ=	fascist.o packlib.o rules.o stringlib.o
11CFLAGS= -O -I../cracklib -DIN_CRACKLIB
12
13$(LIB):	$(OBJ)
14	ar rv $(LIB) $?
15	-ranlib $(LIB)
16
17clean:
18	-rm -f $(OBJ) $(LIB) *~
19