--- bootpc-0.64.orig/Makefile 1998-12-18 00:38:00.000000000 +0100 +++ bootpc-0.64/Makefile 2008-10-16 14:26:35.000000000 +0200 @@ -19,6 +19,7 @@ MISC=Makefile MANIFEST LICENCE NOTICE LS # the delete command RM=/bin/rm SED=/usr/bin/sed +STRIP=strip # we generate this from the list of C files above OBJS=$(CFILES:.c=.o) @@ -33,11 +34,11 @@ clean: ${PROG}: ${OBJS} ${CC} -o ${PROG} ${CFLAGS} ${OBJS} - strip ${PROG} + ${STRIP} ${PROG} ${PROG}-static: ${OBJS} ${CC} -static -o ${PROG} ${CFLAGS} ${OBJS} - strip ${PROG} + ${STRIP} ${PROG} # Make up a distribution file from the bits we want people to see distrib: $(CFILES) $(CHEADS) $(MISC)