home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / unix / volume27 / bootptest-1.1 / part01 / Makefile < prev    next >
Encoding:
Makefile  |  1993-10-11  |  355 b   |  26 lines

  1.  
  2. CFLAGS=-g
  3.  
  4. all: bootptest vdstd
  5.  
  6. OBJS= bootptest.o print-bootp.o util.o
  7. bootptest: $(OBJS)
  8.     $(CC) -o $@ $(OBJS)
  9.  
  10. $(OBJS) : interface.h bootp.h
  11.  
  12. bootptest.cat : bootptest.man
  13.     nroff -man $? > $@
  14.  
  15. vdcmu : vdgencmu
  16.     ./vdgencmu > $@
  17.  
  18. vdstd : vdgenstd
  19.     ./vdgenstd > $@
  20.  
  21. clean :
  22.     -rm -f *.o
  23.     -rm -f core bootptest
  24.     -rm -f vdcmu vdgencmu
  25.     -rm -f vdstd vdgenstd
  26.