s3: VFS: solarisacl: Remove solarisacl_sys_acl_set_file().
[Samba.git] / examples / auth / crackcheck / Makefile
blobedc764529b39dfc7f8f51a49d8c3127a9369c78b
1 # C compiler
2 #CC=cc
3 CC=gcc
5 # Uncomment the following to add symbols to the code for debugging
6 #DEBUG=-g -Wall
8 # Optimization for the compiler
9 #OPTIMIZE=
10 OPTIMIZE=-O2
12 CFLAGS= $(DEBUG) $(OPTIMIZE)
14 OBJS = crackcheck.o
15 LIBS = -lcrack
17 crackcheck: $(OBJS)
18 $(CC) $(CFLAGS) -o crackcheck $(OBJS) $(LIBS)
20 clean:
21 rm -f core *.o crackcheck
23 install: crackcheck
24 install -m 555 crackcheck $(PREFIX)/sbin/crackcheck