File: Makefile

package info (click to toggle)
cracklib2 2.9.2-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 3,148 kB
  • ctags: 411
  • sloc: sh: 11,875; ansic: 2,632; xml: 365; python: 288; makefile: 207; 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