1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-06 13:18:07 +03:00
samba-mirror/examples/auth/crackcheck/Makefile

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
412 B
Makefile
Raw Normal View History

# 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) -o crackcheck $(OBJS) $(LIBS)
clean:
rm -f core *.o crackcheck
install: crackcheck
install -m 555 crackcheck $(PREFIX)/sbin/crackcheck