comparison make/bsd/makefiles/compiler1.make @ 9166:0f3fe35513a0

renamed build variable used to make a Graal/non-Graal build from OMIT_GRAAL to INCLUDE_GRAAL and ensured it is only used internally
author Doug Simon <doug.simon@oracle.com>
date Tue, 16 Apr 2013 22:26:28 +0200
parents d538dce8f403
children be896a1983c0
comparison
equal deleted inserted replaced
9165:0735e848762a 9166:0f3fe35513a0
28 28
29 VM_SUBDIR = client 29 VM_SUBDIR = client
30 30
31 CFLAGS += -DCOMPILER1 31 CFLAGS += -DCOMPILER1
32 32
33 ifndef OMIT_GRAAL 33 ifeq ($(INCLUDE_GRAAL), true)
34 CFLAGS += -DGRAAL 34 CFLAGS += -DGRAAL
35 else 35 else
36 VM_SUBDIR = client-nograal 36 VM_SUBDIR = client-nograal
37 endif 37 endif