Clone of mesa.
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

Makefile.dja 463B

12345678910111213141516171819202122232425
  1. # Makefile for sample programs for MS-DOS with DJGPP and ALLEGRO
  2. INCDIR = ../include
  3. LIBDIR = ../lib
  4. include ../common.dja
  5. _PROGS = accum bitmap1 bitmap2 blendeq blendxor copy cursor depth \
  6. eval fog font line logo nurb oglinfo olympic overlay point \
  7. prim quad select shape sphere star stencil stretch texture \
  8. tri wave
  9. PROGS = $(_PROGS:=.exe)
  10. default: $(PROGS)
  11. clean:
  12. del *.
  13. realclean: clean
  14. del *.exe