/usr/share/doc/libcrack2-dev/examples/Makefile is in libcrack2-dev 2.9.2-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 | # 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
|