home *** CD-ROM | disk | FTP | other *** search
Makefile | 1993-10-11 | 355 b | 26 lines |
-
- CFLAGS=-g
-
- all: bootptest vdstd
-
- OBJS= bootptest.o print-bootp.o util.o
- bootptest: $(OBJS)
- $(CC) -o $@ $(OBJS)
-
- $(OBJS) : interface.h bootp.h
-
- bootptest.cat : bootptest.man
- nroff -man $? > $@
-
- vdcmu : vdgencmu
- ./vdgencmu > $@
-
- vdstd : vdgenstd
- ./vdgenstd > $@
-
- clean :
- -rm -f *.o
- -rm -f core bootptest
- -rm -f vdcmu vdgencmu
- -rm -f vdstd vdgenstd
-