test/Makefile
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File 7089790_shared Cdiff test/Makefile

test/Makefile

Print this page
rev 2695 : shared changes

*** 42,51 **** --- 42,67 ---- ARCH = $(shell uname -m) ifeq ($(ARCH), i386) ARCH = i586 endif endif + ifeq ($(OSNAME), Darwin) + PLATFORM = bsd + SLASH_JAVA = /java + ARCH = $(shell uname -m) + ifeq ($(ARCH), i386) + ARCH = i586 + endif + endif + ifeq ($(findstring BSD,$(OSNAME)), BSD) + PLATFORM = bsd + SLASH_JAVA = /java + ARCH = $(shell uname -m) + ifeq ($(ARCH), i386) + ARCH = i586 + endif + endif ifeq ($(OSNAME), Windows_NT) PLATFORM = windows SLASH_JAVA = J: ifeq ($(word 1, $(PROCESSOR_IDENTIFIER)),ia64) ARCH = ia64
test/Makefile
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File