Clone of mesa.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

123456789101112131415161718192021222324252627282930313233343536
  1. # $Id: Makefile.DJ,v 1.1 1999/08/19 00:55:41 jtg Exp $
  2. # Makefile for sample programs for MS-DOS with DJGPP
  3. ##### MACROS #####
  4. INCDIR = ../include
  5. GL_LIBS = ../lib/dosglut.a ../lib/dosglub.a ../lib/dosmesa.a
  6. LIB_DEP = $(GL_LIBS)
  7. PROGS = accum bitmap1 bitmap2 blendeq blendxor copy depth \
  8. eval fog font line logo nurb olympic \
  9. point prim quad select shape \
  10. sphere star stencil stretch texture \
  11. tri wave
  12. ##### RULES #####
  13. .c: $(LIB_DEP)
  14. gcc -I$(INCDIR) $(CFLAGS) $< $(LIB_DEP) -o $@
  15. ##### TARGETS #####
  16. default: $(PROGS)
  17. clean:
  18. del *.
  19. realclean: clean
  20. del *.exe