# Last updated : Tue Aug 16 21:43:34 1994
# V0.29

PROG=bootpc
CFLAGS=$(O) -Wall -pedantic

# list the Cfiles here
CFILES=bootpc.c

# List the header files here
CHEADS=bootp.h

# the delete command
RM=rm

# we generate this from the list of C files above
OBJS=$(CFILES:.c=.o)

%.o:	%.c $(CHEADS)
	$(CC) $(CFLAGS) -c $(*).c

all:	$(PROG)

install:
	install -s bootpc /sbin/

clean:
	${RM} -f ${OBJS} ${PROG}

${PROG}: ${OBJS}
	${CC} -o ${PROG} ${CFLAGS} ${OBJS}
