home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / games / volume13 / dr_mario / part01 / mario.shr / Makefile < prev    next >
Encoding:
Makefile  |  1992-01-13  |  269 b   |  14 lines

  1. #makefile for BUGS I - SRN 7/12/91 
  2.  
  3. OBJS= main.o startup.o loop.o meat.o
  4.  
  5. #bugs : &  $(OBJS)
  6. bugs :  $(OBJS)   
  7. #use above line if parallel processing is not supported
  8.     cc -O -o bugs $(OBJS) -lcurses -ltermcap 
  9.  
  10. $(OBJS):  info.h    
  11.  
  12. clean: 
  13.     rm -f *.o core temp.c a.out
  14.