home *** CD-ROM | disk | FTP | other *** search
/ Simtel MSDOS - Coast to Coast / simteldosarchivecoasttocoast2.iso / calculat / units_am.zip / MAKEFILE < prev    next >
Text File  |  1993-07-14  |  165b  |  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.