Clone of mesa.
Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

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