CC = gcc
CFLAGS = -O2
LDFLAGS =
CPPFLAGS = -I../portlib
LDLIBS = -L../portlib -lsocket -lportlib
PROG = inetd

all: $(PROG)

inetd: inetd.o

clean:
	rm -f *.o *~ core

clobber: clean
	rm -f $(PROG)

