home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: Graphics / Graphics.zip / graph2.zip / makefile < prev    next >
Makefile  |  1996-09-25  |  351b  |  21 lines

  1. CC=gcc -Zomf -Wall 
  2. DEB= -s
  3. CFLAGS= -I $(DEB) -O3 -m486  -fomit-frame-pointer -malign-loops=4
  4.  
  5. .SUFFIXES:
  6. .SUFFIXES:  .lib  .obj  .c .cpp
  7.  
  8. .cpp.obj:
  9.         $(CC) $(CFLAGS) -c $<
  10.  
  11.  
  12. all:  testGr1.exe
  13.  
  14.  
  15. testGr1.exe: testGr1.obj graph2.lib
  16.         $(CC) $(DEB) -Zomf -Zsys testGr1.obj -o $@ -lgraph2
  17.  
  18. clean:
  19.         -del *.obj *.bak
  20.  
  21.