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.

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