#
#	Makefile for Mint-Net tools.
#

CC = gcc
CPPFLAGS = -I../include
CFLAGS = -O -Wall

all: netstat

netstat: netstat.o
	$(CC) $< -o $@
	chmod +x $@

clean:
	rm -f *.o

# no dependencies jet
depend:
