Makefile-manual 190 B

1234567891011121314
  1. OS=$(shell uname)
  2. ifneq (,$(findstring MINGW,$(OS)))
  3. FILE=Makefile.mingw
  4. endif
  5. ifeq ($(FILE), )
  6. all:
  7. $(error Your platform ${OS} is not supported at this time.)
  8. endif
  9. include $(FILE)