CC 		= gcc
CFLAGS 		= -Wall -ansi -g

TARGET	= pktsetup
SRC	= pktsetup.c

all: $(TARGET)

clean:
	rm -f *.o *~ core $(TARGET)
