PROG = nstest
CC = gcc
CFLAGS = -O6 -D__USE_BSD
LDFLAGS = -s
LDLIBS =

all: $(PROG)

clean:
	rm -f *.o *~ core

clobber: clean
	rm -f $(PROG)

