Clone of mesa.
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

Makefile 550B

123456789101112131415161718192021222324252627282930313233
  1. # progs/beos/Makefile
  2. TOP = ../..
  3. include $(TOP)/configs/current
  4. # Makefile for BeOS demos
  5. # Written by Brian Paul
  6. # This file is in the public domain.
  7. #
  8. # Modified by Philippe Houdoin
  9. LDFLAGS += -soname=_APP_ $(APP_LIB_DEPS)
  10. INCLUDES = -I. -I- -I../../include
  11. default: demo sample GLInfo
  12. clean:
  13. rm -f demo sample GLInfo
  14. rm -f *.o
  15. demo: demo.o
  16. $(LD) demo.o $(LDFLAGS) -o $@
  17. sample: sample.o
  18. $(LD) sample.o $(LDFLAGS) -o $@
  19. GTLInfo: GLInfo.o
  20. $(LD) GLInfo.o $(INCLUDES) $(LDFLAGS) -o $@
  21. .cpp.o:
  22. $(CC) -c $< $(INCLUDES) $(CFLAGS) -o $@