home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: InfoMgt / InfoMgt.zip / bigben2.zip / makefile < prev   
Makefile  |  1993-12-15  |  362b  |  23 lines

  1. # Makefile for bigben2
  2. # using emx-0.8g
  3.  
  4. CC=gcc
  5. CFLAGS=-Wall -Zomf -O
  6. LFLAGS=-Zomf -Zsys -s
  7.  
  8. all: bigben2.exe
  9.  
  10. bigben2.exe: bigben2.obj bigben2.def
  11.     $(CC) -o bigben2.exe bigben2.obj bigben2.def $(LFLAGS)
  12.  
  13. bigben2.obj: bigben2.cc
  14.     $(CC) $(CFLAGS) -c bigben2.cc
  15.  
  16. .cc.obj:
  17.     $(CC) $(CFLAGS) -c $*.cc
  18.  
  19. # clean up
  20. clean:
  21.     del *.obj
  22.  
  23.