From 315fc06a202f1a4b2ed77c19e37065e5b71d31b3 Mon Sep 17 00:00:00 2001 From: Joel Dice Date: Fri, 7 Mar 2008 16:34:24 -0700 Subject: [PATCH] look for win32 headers and libraries in parent directory --- makefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/makefile b/makefile index 8576b30618..bb5852f6d7 100644 --- a/makefile +++ b/makefile @@ -23,6 +23,7 @@ endif mode = fast process = compile +root = $(shell (cd .. && pwd)) build = build native-build = $(build)/$(platform)-$(arch)-$(process)-$(mode) classpath-build = $(build)/classpath @@ -89,8 +90,8 @@ ifeq ($(platform),darwin) endif ifeq ($(platform),windows) - inc = /usr/local/win32/include - lib = /usr/local/win32/lib + inc = $(root)/win32/include + lib = $(root)/win32/lib system = windows object-format = pe-i386