CC = gcc -I.
CFLAGS = -O2 -fomit-frame-pointer
LDFLAGS = -s
LDLIBS = 
OBJS = inetd.o daemon.o
PROG = inetd

all: $(PROG)

inetd: $(OBJS)

clean:
	rm -f *.o *~ core inetd

clobber: clean
	rm -f $(PROG)

install: all
	install -o root -g root -m 0755 inetd ${DEBDIR}/usr/sbin
	install -o root -g root -m 0644 inetd.8 ${DEBDIR}/usr/man/man8
