CC = gcc
CFLAGS = -O2
LDFLAGS =
#
# if RPC_FIXEDPORT is defined then inetd will look for RPC service names
# in /etc/services and use the port specified there (if service occures
# at all). Useful for a dynamically invoced nfsd which is expected to be
# bound to UDP port 2049.
#
CPPFLAGS = -I../portlib -DRPC_FIXEDPORT
LDLIBS = -L../portlib -lsocket -lportlib -lrpclib -liio
PROG = inetd

all: $(PROG)

inetd: inetd.o

clean:
	rm -f *.o *~ core

clobber: clean
	rm -f $(PROG)

