diff options
Diffstat (limited to 'Makefile.common')
-rw-r--r-- | Makefile.common | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/Makefile.common b/Makefile.common index a7b391b..32a92ab 100644 --- a/Makefile.common +++ b/Makefile.common @@ -1,5 +1,5 @@ # next line has to be edited manually -PD_DIR = $(ROOT_DIR)/../pd/src +PD_DIR = $(ROOT_DIR)/../../pd/src OS_NAME = $(shell uname -s) ifneq ($(OS_NAME),Linux) @@ -14,10 +14,13 @@ TILDE = ~ include Makefile.sources include Makefile.objects +ifneq ($(OS_NAME),Darwin) # FIXME CC = gcc-2.95 +else # for MacOS X -#CC = gcc2 +CC = gcc2 +endif default: define_build all |