aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: af12fca39ea77f8851676766a98a65d3c81df1c5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
CFLAGS=-Wall -O2 -s
LDFLAGS=-lpthread
OBJS= \
      bus.c \
      netnuke.c \
      nukectl.c \
      output_redirect.c

all:
	cc ${CFLAGS} ${LDFLAGS} -o netnuke ${OBJS}
	du -sh netnuke
clean:
	rm -rf netnuke