aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: 4d4267587b525e70de6a762c14baf499ea77b251 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
CFLAGS=-std=c99 -Wall -pipe -O2 -fomit-frame-pointer
DEFINES= 
LFLAGS=-lutil -ltermcap
PACKAGE=netnuke

all:
	cc -o $(PACKAGE) $(DEFINES) $(CFLAGS) $(LFLAGS) netnuke.c log.c
	strip netnuke

clean:
	rm netnuke