Clone of mesa.
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. # src/mesa/x86/Makefile
  2. TOP = ../../..
  3. include $(TOP)/configs/current
  4. INCLUDE_DIRS = \
  5. -I$(TOP)/include/GL \
  6. -I$(TOP)/include \
  7. -I.. \
  8. -I../main \
  9. -I../math \
  10. -I../glapi \
  11. -I../tnl
  12. default: gen_matypes matypes.h
  13. clean:
  14. -rm -f matypes.h gen_matypes
  15. gen_matypes: gen_matypes.c
  16. $(HOST_CC) $(ARCH_FLAGS) $(INCLUDE_DIRS) $(HOST_CFLAGS) gen_matypes.c -o gen_matypes
  17. # need some special rules here, unfortunately
  18. matypes.h: ../main/mtypes.h ../tnl/t_context.h gen_matypes
  19. ./gen_matypes > matypes.h
  20. common_x86_asm.o: matypes.h
  21. 3dnow_normal.o: matypes.h
  22. 3dnow_xform1.o: matypes.h
  23. 3dnow_xform2.o: matypes.h
  24. 3dnow_xform3.o: matypes.h
  25. 3dnow_xform4.o: matypes.h
  26. mmx_blend.o: matypes.h
  27. sse_normal.o: matypes.h
  28. sse_xform1.o: matypes.h
  29. sse_xform2.o: matypes.h
  30. sse_xform3.o: matypes.h
  31. sse_xform4.o: matypes.h
  32. x86_cliptest.o: matypes.h
  33. x86_xform2.o: matypes.h
  34. x86_xform3.o: matypes.h
  35. x86_xform4.o: matypes.h