home *** CD-ROM | disk | FTP | other *** search
/ Gold Fish 2 / goldfish_vol2_cd1.bin / files / misc / sci / units / source / makefile.dos < prev    next >
Encoding:
Makefile  |  1994-07-28  |  152 b   |  14 lines

  1. CC=bccx
  2.  
  3. units.exe: units.obj getopt.obj
  4.     $(CC) units.obj getopt.obj
  5.  
  6. units.obj: units.c 
  7.     $(CC) -c units.c
  8.  
  9. getopt.obj: getopt.c
  10.     $(CC) -c getopt.c
  11.  
  12.  
  13.  
  14.