home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / unix / volume14 / calc / Makefile < prev    next >
Encoding:
Makefile  |  1988-05-17  |  195 b   |  13 lines

  1. BIN = ../bin/
  2. CFLAGS = -O
  3.  
  4. calc: $(BIN)calc
  5.  
  6. $(BIN)calc: calc.c machine.h
  7.     $(CC) calc.c -lm -o $(BIN)calc
  8.  
  9. machine.h:
  10.     $(CC) mch_defines.c -o mch_defines
  11.     mch_defines > machine.h
  12.     rm mch_defines
  13.