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

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

clean:
	rm netnuke