home *** CD-ROM | disk | FTP | other *** search
/ Boston 2 / boston-2.iso / DOS / PROGRAM / C / GETF / MKFILE < prev    next >
Text File  |  1993-12-01  |  491b  |  20 lines

  1. #  makefile for getf and bldfuncs, compiled with the DeSmet C compiler
  2. #
  3. #  prf is just a miniature version of printf without floating point formats
  4. #  match is a Unix style pattern matcher
  5. getf.exe: getf.o 
  6.     bind exec getf prf match -ogetf
  7. getf.o: getf.c
  8.  
  9. #  quotearg does DOS style wildcard expansion on the command line
  10. bldfuncs.exe: bldfuncs.o quotearg.o prf.o
  11.     bind bldfuncs prf quotearg
  12. bldfuncs.o: bldfuncs.c
  13.  
  14. quotearg.o: quotearg.c
  15.  
  16. .c.o:
  17.     c88 $*
  18. .o.exe:
  19.     bind $*
  20.