aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: 578abf198631afbca0be9cecbfdff712c42d2a5f (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:
	gcc $(SVNDEF) -o $(PACKAGE) $(DEFINES) $(CFLAGS) $(LFLAGS) netnuke.c  
	strip netnuke

clean:
	rm netnuke