aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: 70089707e77bc670af05ed58b5aee0843da6f0a3 (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  
	strip netnuke

clean:
	rm netnuke