File: Makefile

package info (click to toggle)
cracklib2 2.7-19
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 384 kB
  • ctags: 114
  • sloc: ansic: 1,931; sh: 67; makefile: 65; perl: 46
file content (12 lines) | stat: -rw-r--r-- 184 bytes parent folder | download | duplicates (12)
1
2
3
4
5
6
7
8
9
10
11
12
# Makefile for cracklib2 example.

CC=gcc
CFLAGS=-g -O2 -Wall
LDFLAGS=

cracklib_example: cracklib_example.o
	$(CC) $(LDFLAGS) -o $@ -lcrack $^

clean:
	rm -f *.o *~ cracklib_example