home *** CD-ROM | disk | FTP | other *** search
/ Gold Medal Installation King 98 / BootGold.iso / BOOTDISK / Hardware / opengl / sgi / OPENGL.EXE / _SETUP.1 / makefile < prev    next >
Encoding:
Makefile  |  1997-07-28  |  481 b   |  33 lines

  1. !include <win32.mak>
  2.  
  3. CFLAGS = $(cflags) $(cdebug)
  4. LDFLAGS = $(lflags) $(ldebug)
  5. LDLIBS = glu.lib opengl.lib $(guilibsdll)
  6.  
  7. TARGETS = \
  8.     cube.exe \
  9.     indexfnc.exe \
  10.     indexmat.exe \
  11.     indextex.exe \
  12.     sdib.exe \
  13.     simpleci.exe \
  14.     texenv.exe \
  15.     torus.exe \
  16.     vcull.exe \
  17.     wglinfo.exe
  18.  
  19. default all: $(TARGETS)
  20.  
  21. .c.exe:
  22.     $(cc) $(CFLAGS) -c $*.c
  23.     $(link) $(LDFLAGS) -out:$@ $*.obj $(LDLIBS)
  24.  
  25. clean:
  26.     @del *.obj
  27.  
  28. clobber:
  29.     @del *.obj
  30.     @del *.exe
  31.  
  32. 
  33.