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

123456789101112131415161718192021222324252627282930313233
  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. manytex \
  10. sharedtex \
  11. texline
  12. ##### RULES #####
  13. .SUFFIXES:
  14. .SUFFIXES: .c
  15. .c:
  16. $(CC) $(CFLAGS) $< $(LIBS) -o $@
  17. ##### TARGETS #####
  18. default: $(PROGS)
  19. clean:
  20. rm -f $(PROGS)
  21. rm -f *.o