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 552B

123456789101112131415161718192021222324252627282930313233343536
  1. # Simple makefile for compiling test programs on Linux
  2. # These programs aren't intended to be included with the normal
  3. # distro as they're not too interesting but good for testing during
  4. # development.
  5. CC = gcc
  6. CFLAGS = -g -I../include
  7. LIBS = -L../lib -lglut -lGLU -lGL -L/usr/X11R6/lib -lX11 -lXext -lm
  8. PROGS = cva \
  9. dinoshade \
  10. manytex \
  11. multipal \
  12. projtex \
  13. sharedtex \
  14. texline
  15. ##### RULES #####
  16. .SUFFIXES:
  17. .SUFFIXES: .c
  18. .c:
  19. $(CC) $(CFLAGS) $< $(LIBS) -o $@
  20. ##### TARGETS #####
  21. default: $(PROGS)
  22. clean:
  23. rm -f $(PROGS)
  24. rm -f *.o