File: Makefile

package info (click to toggle)
cracklib2 2.8.19-3
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 3,084 kB
  • sloc: sh: 11,170; ansic: 2,626; xml: 365; python: 279; makefile: 185; sed: 16
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