
PROGS = seltest naptest naptest2 naptest3

LIB = -lx # -linet # needed on ISC

all: $(PROGS)

# -linet needed on ISC
seltest: seltest.c
	cc -o $@ $@.c

naptest: seltest.c
	cc -o $@ $@.c $(LIB)

naptest2: seltest.c
	cc -o $@ $@.c $(LIB)

naptest3: seltest.c
	cc -o $@ $@.c $(LIB)

clean:
	rm -f $(PROGS)
