summaryrefslogtreecommitdiff
path: root/Makefile
blob: 15311e6e8f9037a42df9910e53878be6fbddb76f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
VERSION = 0.1

CFLAGS += -Wall -Os -pedantic -std=c99
CFLAGS += -DVERSION=\"${VERSION}\"

all: godzilla

again: clean all

clean:
	rm -f godzilla

config.h:
	cp config.def.h $@

godzilla: config.h godzilla.c
	${CC} ${CFLAGS} -o godzilla godzilla.c -lcrypt