diff options
author | N.N. <matju@users.sourceforge.net> | 2006-07-21 15:39:11 +0000 |
---|---|---|
committer | N.N. <matju@users.sourceforge.net> | 2006-07-21 15:39:11 +0000 |
commit | 91dd6b68f0f209ad015a303095bb1df018dca71e (patch) | |
tree | 32440c1798a62e90dbaf51d4d14b6b40f8552281 | |
parent | 033e9376d9e39004fb1d1d1383e8f70045dd42ed (diff) |
PDP makefile should default to building for Linux when on Linux
svn path=/trunk/externals/pdp/; revision=5393
-rw-r--r-- | Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -1,7 +1,12 @@ include Makefile.config +# all: $(PDP_TARGET) -all: $(PDP_TARGET) +ifeq ($(OS_NAME),darwin) +all: darwin +else +all: linux +endif pdp_all: make -C system |