Makefile 187 B

123456789101112
  1. # Common makefile -- loads make rules for each platform
  2. OSTYPE=$(shell uname -s)
  3. ifeq ($(OSTYPE),Darwin)
  4. include make-mac.mk
  5. endif
  6. ifeq ($(OSTYPE),Linux)
  7. include make-linux.mk
  8. endif