home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / wxos2240.zip / wxWindows-2.4.0 / samples / opengl / isosurf / makefile.bcc < prev    next >
Makefile  |  2000-02-28  |  517b  |  26 lines

  1. #
  2. # File:        makefile.bcc
  3. # Author:    Julian Smart
  4. # Created:    1998
  5. # Updated:    
  6. #
  7. # Builds a BC++ 16-bit sample
  8.  
  9. !if "$(WXWIN)" == ""
  10. !error You must define the WXWIN variable in autoexec.bat, e.g. WXWIN=c:\wx
  11. !endif
  12.  
  13. WXDIR = $(WXWIN)
  14.  
  15. TARGET=isosurf
  16. # EXTRALIBS=$(WXDIR)\lib\glcanvas.lib
  17. # EXTRACPPFLAGS=-I$(WXDIR)\utils\glcanvas\win
  18. OBJECTS = $(TARGET).obj
  19. EXTRATARGETS=isosurf.dat
  20.  
  21. !include $(WXDIR)\src\makeprog.bcc
  22.  
  23. isosurf.dat:    isosurf.dat.gz
  24.     gzip -c -d isosurf.dat.gz > isosurf.dat
  25.  
  26.