head	1.1;
access;
symbols;
locks
	florian:1.1; strict;
comment	@# @;


1.1
date	94.10.13.00.22.35;	author florian;	state Exp;
branches;
next	;


desc
@@


1.1
log
@Initial revision
@
text
@# Last updated : Tue Aug 16 21:43:34 1994
# V0.29

PROG=bootpc
CFLAGS=-O2 -ansi -Wall -pedantic -m486

# list the Cfiles here
CFILES=bootpc.c

# List the header files here
CHEADS=bootp.h

# the delete command
RM=/bin/rm

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

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

all:	$(PROG)

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

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