Add Unicode 16.0.0 in `Lib/unicode/`, 277.19M
[sunny256-utils.git] / src / personnr / Makefile
blob0cb260ff9403c5accb0804e33225aa9a9453df98
1 # Makefile for personnr.c
2 # $Id: Makefile,v 1.3 2003/09/12 03:24:52 sunny Exp $
3 # Author: Øyvind A. Holm <sunny@sunbase.org>
5 CC = cc
6 CFLAGS = -O2 -g -ansi -pedantic -Wall -Werror
7 EXEC = personnr
9 $(EXEC): personnr.c Makefile
10 $(CC) $(CFLAGS) -o $(EXEC) personnr.c
12 .PHONY: clean
13 clean:
14 rm -f *~ $(EXEC) core core.$(EXEC)
16 .PHONY: test
17 test: