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

1234567891011121314151617181920212223242526272829303132333435363738
  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. fogcoord \
  11. manytex \
  12. multipal \
  13. projtex \
  14. seccolor \
  15. sharedtex \
  16. texline
  17. ##### RULES #####
  18. .SUFFIXES:
  19. .SUFFIXES: .c
  20. .c:
  21. $(CC) $(CFLAGS) $< $(LIBS) -o $@
  22. ##### TARGETS #####
  23. default: $(PROGS)
  24. clean:
  25. rm -f $(PROGS)
  26. rm -f *.o