Skip to content

Commit

Permalink
RevoBoot v1.0.35 (changes for OS X 10.8 aka Mountain Lion).
Browse files Browse the repository at this point in the history
  • Loading branch information
RevoGirl committed Mar 12, 2012
1 parent 0d75172 commit 1562d96
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions Makefile
Expand Up @@ -41,15 +41,20 @@ GENERIC_SUBDIRS =
# Export target OS type (picked up by i386/libsaio/Makefile)
#

ifeq ($(MAKECMDGOALS), lion)
TARGET_OS_TYPE = 3;
ifeq ($(MAKECMDGOALS), mountain-lion)
MAKE_TARGET_OS = 6;
else
TARGET_OS_TYPE = 2;
ifeq ($(MAKECMDGOALS), lion)
MAKE_TARGET_OS = 2;
else
MAKE_TARGET_OS = 1;
endif
endif

export PRODUCT_OS_TARGET = `echo $(TARGET_OS_TYPE)`
export PRODUCT_OS_TARGET = `echo $(MAKE_TARGET_OS)`

lion: all
mountain-lion: all

all: $(SYMROOT) $(OBJROOT)
@if [ -z "$(RC_ARCHS)" ]; then \
Expand Down

0 comments on commit 1562d96

Please sign in to comment.