clean up the Makefile

This commit is contained in:
Janus 2015-04-27 23:23:06 +02:00
parent 04c20fd871
commit d839a6cef6

View file

@ -8,7 +8,7 @@ CPP_VERSION := $(shell cpp --version 2>/dev/null)
# So we define mcpp as default, and cpp IF NOT "on MacosX" AND "CPP is defined"
UNAME_S := $(shell uname -s)
CPP=mcpp/src/mcpp -a -C -P
ifneq ($(UNAME_S),Darwin))
ifneq ($(UNAME_S),Darwin)
ifdef CPP_VERSION
CPP=cpp -P -undef -Wundef -std=c99 -nostdinc -Wtrigraphs -fdollars-in-identifiers -C
endif