home *** CD-ROM | disk | FTP | other *** search
/ Magazyn Amiga 5 / MA_Cover_5.iso / ppc / mesa / demos / makefile.dj < prev    next >
Encoding:
Makefile  |  1998-01-31  |  468 b   |  31 lines

  1. # Makefile for demo programs for MS-DOS with DJGPP
  2.  
  3. ##### MACROS #####
  4.  
  5. INCDIR = ../include
  6.  
  7. GL_LIBS =  ../lib/tkdos.a ../lib/dosglub.a ../lib/dosaux.a ../lib/dosmesa.a
  8.  
  9. LIB_DEP = $(GL_LIBS)
  10.  
  11. PROGS = bounce gears isosurf morph3d reflect spin stex3d texobj winpos 
  12.  
  13. ##### RULES #####
  14.  
  15. .c: $(LIB_DEP)
  16.     gcc -I$(INCDIR) -O3 -m486 -s $< $(LIB_DEP) -o $@
  17.  
  18.  
  19. ##### TARGETS #####
  20.  
  21. default: $(PROGS)
  22.  
  23. clean:
  24.     del *.
  25.  
  26. realclean: clean
  27.     del *.exe
  28.  
  29.  
  30.  
  31.