1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-14 19:24:43 +03:00
Simo Sorce 410a6c72ea r2331: check password script code and example from trunk
(This used to be commit f836be323a233f3a28cbaa04c532e83ea98ead89)
2007-10-10 10:52:39 -05:00

26 lines
412 B
Makefile

# C compiler
#CC=cc
CC=gcc
# Uncomment the following to add symbols to the code for debugging
#DEBUG=-g -Wall
# Optimization for the compiler
#OPTIMIZE=
OPTIMIZE=-O2
CFLAGS= $(DEBUG) $(OPTIMIZE)
OBJS = crackcheck.o
LIBS = -lcrack
crackcheck: $(OBJS)
$(CC) $(CFLAGS) $(LIBS) -o crackcheck $(OBJS)
clean:
rm -f core *.o crackcheck
install: crackcheck
install -m 555 crackcheck $(PREFIX)/sbin/crackcheck