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