diff options
author | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2003-09-01 19:54:05 +0000 |
---|---|---|
committer | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2003-09-01 19:54:05 +0000 |
commit | 672477f94d2d0701f75f2546ad79980dc9ac8543 (patch) | |
tree | 3e1c6a14278e50a42fb542002b15ad83e5452494 /Makefile.common | |
parent | 27d9e6e366d8d4332b7162a62a9b56d93a06003d (diff) |
changed PD_DIR to reflect CVS dir structure; added if/else to select proper gcc for Darwin
svn path=/trunk/externals/miXed/; revision=927
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 |