home *** CD-ROM | disk | FTP | other *** search
/ Amiga Magazin: Amiga-CD 2000 April & May / AMIGA_2000_04.iso / patches / mesa3.1 / mtdemos / makefile next >
Makefile  |  1998-02-14  |  1KB  |  70 lines

  1. # Makefile for Mesa multithreded demo programs
  2.  
  3. # Mesa 3-D graphics library
  4. # Version:  2.6
  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 = mt_osdemo
  32.  
  33.  
  34. ##### RULES #####
  35.  
  36. .SUFFIXES:
  37. .SUFFIXES: .c
  38.  
  39. .c: $(LIB_DEP)
  40.     $(CC) -I$(INCDIR) $(CFLAGS) $< $(GL_LIBS) -o $@
  41.  
  42.  
  43.  
  44. ##### TARGETS #####
  45.  
  46. default:
  47.     @echo "Specify a target configuration"
  48.  
  49. clean:
  50.     -rm *.o *~
  51.  
  52. realclean:
  53.     -rm $(PROGS)
  54.     -rm *.o *~
  55.  
  56. targets: $(PROGS)
  57.  
  58. # execute all programs
  59. exec: $(PROGS)
  60.     @for prog in $(PROGS) ;            \
  61.     do                    \
  62.         echo -n "Running $$prog ..." ;    \
  63.         $$prog ;            \
  64.         echo ;                \
  65.     done
  66.  
  67.  
  68. include ../Make-config
  69.  
  70.