home *** CD-ROM | disk | FTP | other *** search
/ Magazyn Amiga 5 / MA_Cover_5.iso / ppc / mesa / gdemos / makefile < prev    next >
Encoding:
Makefile  |  1998-01-31  |  1.5 KB  |  71 lines

  1. # Makefile for GLUT-based demo programs
  2.  
  3. # Mesa 3-D graphics library
  4. # Version:  2.5
  5. # Copyright (C) 1995-1997  Brian Paul
  6. #
  7. # This library is free software; you can redistribute it and/or
  8. # modify it under the terms of the GNU Library General Public
  9. # License as published by the Free Software Foundation; either
  10. # version 2 of the License, or (at your option) any later version.
  11. #
  12. # This library is distributed in the hope that it will be useful,
  13. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  15. # Library General Public License for more details.
  16. #
  17. # You should have received a copy of the GNU Library General Public
  18. # License along with this library; if not, write to the Free
  19. # Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  20.  
  21.  
  22.  
  23. ##### MACROS #####
  24.  
  25. INCDIR = ../include
  26.  
  27. GL_LIBS = -L../lib -lglut -lMesaGLU -lMesaGL -lm $(XLIBS)
  28.  
  29. LIB_DEP = ../lib/$(GL_LIB) ../lib/$(GLU_LIB) ../lib/$(GLUT_LIB)
  30.  
  31. PROGS = bounce clearspd drawpix gamma gears glinfo glutfx \
  32.     paltex pointblast spectex texcyl texobj trispd
  33.  
  34.  
  35. ##### RULES #####
  36.  
  37. .SUFFIXES:
  38. .SUFFIXES: .c
  39.  
  40. .c: $(LIB_DEP)
  41.     $(CC) -I$(INCDIR) $(CFLAGS) $< $(GL_LIBS) -o $@
  42.  
  43.  
  44.  
  45. ##### TARGETS #####
  46.  
  47. default:
  48.     @echo "Specify a target configuration"
  49.  
  50. clean:
  51.     -rm *.o *~
  52.  
  53. realclean:
  54.     -rm $(PROGS)
  55.     -rm *.o *~
  56.  
  57. targets: $(PROGS)
  58.  
  59. # execute all programs
  60. exec: $(PROGS)
  61.     @for prog in $(PROGS) ;            \
  62.     do                    \
  63.         echo -n "Running $$prog ..." ;    \
  64.         $$prog ;            \
  65.         echo ;                \
  66.     done
  67.  
  68.  
  69. include ../Make-config
  70.  
  71.