home *** CD-ROM | disk | FTP | other *** search
/ Source Code 1992 March / Source_Code_CD-ROM_Walnut_Creek_March_1992.iso / usenet / altsrcs / 3 / 3428 / makefile < prev    next >
Encoding:
Makefile  |  1991-05-27  |  237 b   |  16 lines

  1. # makefile for bomb
  2. #
  3. CC= cc
  4.  
  5. # your system may not require termlib to be loaded
  6. LIBRARIES= -lm -lcurses -ltermlib
  7.  
  8. # use -g for debugging, if necessary
  9. FLAGS= -O
  10.  
  11. default: bomb
  12.  
  13. bomb: bomb.c
  14.     $(CC) $(FLAGS) -o bomb bomb.c $(LIBRARIES)
  15.  
  16.