corda/makefile

327 lines
7.7 KiB
Makefile
Raw Normal View History

2007-10-23 17:22:48 +00:00
#MAKEFLAGS = -s
build-arch = $(shell uname -m)
ifeq ($(build-arch),i586)
build-arch = i386
2007-06-29 16:43:25 +00:00
endif
ifeq ($(build-arch),i686)
build-arch = i386
2007-06-29 16:43:25 +00:00
endif
2007-06-29 16:42:39 +00:00
build-platform = $(shell uname -s | tr [:upper:] [:lower:])
2007-09-21 14:16:43 +00:00
arch = $(build-arch)
platform = $(build-platform)
2007-10-26 21:02:39 +00:00
ifeq ($(platform),windows)
arch = i386
endif
2007-09-25 23:53:11 +00:00
mode = debug
2007-10-26 21:02:39 +00:00
process = interpret
build = build
native-build = $(build)/$(platform)/$(arch)/$(mode)
classpath-build = $(build)/classpath
test-build = $(build)/test
src = src
2007-06-25 01:34:07 +00:00
classpath = classpath
test = test
input = $(test-build)/Hello.class
build-cxx = g++
build-cc = gcc
2007-07-17 01:55:49 +00:00
cxx = $(build-cxx)
cc = $(build-cc)
ar = ar
ranlib = ranlib
objcopy = objcopy
2007-09-14 23:04:08 +00:00
vg = nice valgrind --suppressions=valgrind.supp --undef-value-errors=no \
--num-callers=32 --db-attach=yes --freelist-vol=100000000
db = gdb --args
2007-06-21 01:38:02 +00:00
javac = javac
jar = jar
strip = :
show-size = :
rdynamic = -rdynamic
warnings = -Wall -Wextra -Werror -Wunused-parameter \
-Winit-self -Wconversion
common-cflags = $(warnings) -fno-rtti -fno-exceptions \
-I$(JAVA_HOME)/include -idirafter $(src) -I$(native-build) \
-D__STDC_LIMIT_MACROS -D_JNI_IMPLEMENTATION_
2007-10-26 14:34:54 +00:00
build-cflags = $(common-cflags) -fPIC -fvisibility=hidden \
2007-10-26 22:16:47 +00:00
-I$(JAVA_HOME)/include/linux -I$(src) -pthread
2007-10-26 14:34:54 +00:00
cflags = $(build-cflags)
2007-10-26 21:02:39 +00:00
common-lflags = -lm -lz
2007-10-26 22:16:47 +00:00
lflags = $(common-lflags) -lpthread -ldl -rdynamic
2007-10-26 14:34:54 +00:00
system = posix
2007-10-23 01:00:57 +00:00
asm = x86
2007-10-26 21:02:39 +00:00
object-arch = i386:x86-64
object-format = elf64-x86-64
pointer-size = 8
ifeq ($(arch),i386)
object-arch = i386
object-format = elf32-i386
pointer-size = 4
endif
ifeq ($(platform),darwin)
2007-10-26 22:16:47 +00:00
build-cflags = $(common-cflags) -fPIC -fvisibility=hidden \
-I$(JAVA_HOME)/include/linux -I$(src)
2007-10-26 21:02:39 +00:00
lflags = $(common-lflags) -ldl
endif
2007-10-26 21:02:39 +00:00
ifeq ($(platform),windows)
inc = /usr/local/win32/include
lib = /usr/local/win32/lib
system = windows
2007-10-26 21:02:39 +00:00
object-format = pe-i386
cxx = i586-mingw32msvc-g++
cc = i586-mingw32msvc-gcc
dlltool = i586-mingw32msvc-dlltool
ar = i586-mingw32msvc-ar
ranlib = i586-mingw32msvc-ranlib
objcopy = i586-mingw32msvc-objcopy
rdynamic = -Wl,--export-dynamic
2007-10-26 21:02:39 +00:00
lflags = -L$(lib) $(common-lflags) -lws2_32 -Wl,--kill-at -mwindows -mconsole
cflags = $(common-cflags) -I$(inc)
endif
ifeq ($(mode),debug)
cflags += -O0 -g3
endif
ifeq ($(mode),stress)
cflags += -O0 -g3 -DVM_STRESS
endif
ifeq ($(mode),stress-major)
cflags += -O0 -g3 -DVM_STRESS -DVM_STRESS_MAJOR
endif
ifeq ($(mode),fast)
cflags += -O3 -DNDEBUG
strip = strip
show-size = ls -l
endif
cpp-objects = $(foreach x,$(1),$(patsubst $(2)/%.cpp,$(3)/%.o,$(x)))
asm-objects = $(foreach x,$(1),$(patsubst $(2)/%.S,$(3)/%-asm.o,$(x)))
java-classes = $(foreach x,$(1),$(patsubst $(2)/%.java,$(3)/%.class,$(x)))
jni-sources = $(shell find $(classpath) -name '*.cpp')
jni-objects = $(call cpp-objects,$(jni-sources),$(classpath),$(native-build))
jni-cflags = $(cflags)
2007-06-25 01:34:07 +00:00
generated-code = \
$(native-build)/type-enums.cpp \
$(native-build)/type-declarations.cpp \
$(native-build)/type-constructors.cpp \
$(native-build)/type-initializations.cpp \
$(native-build)/type-java-initializations.cpp
2007-07-06 23:50:26 +00:00
interpreter-depends = \
$(generated-code) \
$(src)/common.h \
$(src)/system.h \
2007-06-04 23:39:59 +00:00
$(src)/heap.h \
$(src)/finder.h \
$(src)/processor.h \
$(src)/process.h \
$(src)/stream.h \
$(src)/constants.h \
2007-07-06 23:50:26 +00:00
$(src)/jnienv.h \
$(src)/machine.h
interpreter-sources = \
$(src)/$(system).cpp \
$(src)/finder.cpp \
2007-07-06 23:50:26 +00:00
$(src)/machine.cpp \
2007-06-20 19:20:25 +00:00
$(src)/heap.cpp \
2007-09-25 23:53:11 +00:00
$(src)/$(process).cpp \
$(src)/builtin.cpp \
$(src)/jnienv.cpp
2007-06-29 02:58:48 +00:00
2007-10-23 01:00:57 +00:00
interpreter-asm-sources = $(src)/$(asm).S
ifeq ($(process),compile)
interpreter-asm-sources += $(src)/compile.S
endif
2007-06-29 02:58:48 +00:00
interpreter-cpp-objects = \
$(call cpp-objects,$(interpreter-sources),$(src),$(native-build))
interpreter-asm-objects = \
$(call asm-objects,$(interpreter-asm-sources),$(src),$(native-build))
2007-06-29 02:58:48 +00:00
interpreter-objects = \
$(interpreter-cpp-objects) \
$(interpreter-asm-objects)
driver-sources = $(src)/main.cpp
2007-10-26 14:34:54 +00:00
driver-object = $(call cpp-objects,$(driver-sources),$(src),$(native-build))
2007-06-04 23:39:59 +00:00
generator-headers = \
$(src)/input.h \
$(src)/output.h
generator-sources = $(src)/type-generator.cpp
generator-objects = \
$(call cpp-objects,$(generator-sources),$(src),$(native-build))
generator = $(native-build)/generator
archive = $(native-build)/libvm.a
interpreter = $(native-build)/vm
2007-06-30 02:39:01 +00:00
classpath-sources = $(shell find $(classpath) -name '*.java')
classpath-classes = \
$(call java-classes,$(classpath-sources),$(classpath),$(classpath-build))
classpath-object = $(native-build)/classpath-jar.o
ifeq ($(platform),darwin)
classpath-object =
endif
test-sources = $(shell find $(test) -name '*.java')
test-classes = $(call java-classes,$(test-sources),$(test),$(test-build))
class-name = $(patsubst $(1)/%.class,%,$(2))
class-names = $(foreach x,$(1),$(call class-name,$(x)))
flags = -cp $(test-build)
args = $(flags) $(call class-name,$(test-build),$(input))
2007-06-21 01:38:02 +00:00
.PHONY: build
2007-10-26 21:02:39 +00:00
build: $(interpreter) $(archive) $(classpath-classes) $(test-classes)
2007-09-30 16:32:17 +00:00
$(input): $(classpath-classes)
2007-06-21 01:38:02 +00:00
.PHONY: run
2007-09-30 16:32:17 +00:00
run: build
$(interpreter) $(args)
.PHONY: debug
2007-09-30 16:32:17 +00:00
debug: build
gdb --args $(interpreter) $(args)
.PHONY: vg
2007-09-30 16:32:17 +00:00
vg: build
$(vg) $(interpreter) $(args)
.PHONY: test
test: build
/bin/bash $(test)/test.sh 2>/dev/null \
$(interpreter) $(mode) "$(flags)" $(call class-names,$(test-classes))
.PHONY: clean
clean:
2007-06-29 16:42:39 +00:00
@echo "removing build"
rm -rf build
.PHONY: clean-native
clean-native:
@echo "removing $(native-build)"
rm -rf $(native-build)
gen-arg = $(shell echo $(1) | sed -e 's:$(native-build)/type-\(.*\)\.cpp:\1:')
$(generated-code): %.cpp: $(src)/types.def $(generator)
@echo "generating $(@)"
@mkdir -p -m 1777 $(dir $(@))
$(generator) $(call gen-arg,$(@)) < $(<) > $(@)
$(native-build)/type-generator.o: \
2007-06-04 23:39:59 +00:00
$(generator-headers)
define compile-class
2007-06-21 01:38:02 +00:00
@echo "compiling $(@)"
2007-10-23 17:22:48 +00:00
@mkdir -p -m 1777 $(dir $(@))
$(javac) -bootclasspath $(classpath) -classpath $(classpath) \
-d $(1) $(<)
2007-09-30 16:32:17 +00:00
@touch $(@)
endef
2007-06-21 01:38:02 +00:00
$(classpath-build)/%.class: $(classpath)/%.java
@echo "compiling $(@)"
@mkdir -p -m 1777 $(dir $(@))
$(javac) -bootclasspath $(classpath) -classpath $(classpath) \
-d $(classpath-build) $(<)
@touch $(@)
2007-06-29 02:58:48 +00:00
$(test-build)/%.class: $(test)/%.java
@echo "compiling $(@)"
@mkdir -p -m 1777 $(dir $(@))
$(javac) -bootclasspath $(classpath) -classpath $(classpath) \
-d $(test-build) $(<)
@touch $(@)
define compile-object
@echo "compiling $(@)"
2007-10-23 17:22:48 +00:00
@mkdir -p -m 1777 $(dir $(@))
$(cxx) $(cflags) -c $(<) -o $(@)
endef
$(interpreter-cpp-objects): \
$(native-build)/%.o: $(src)/%.cpp $(interpreter-depends)
$(compile-object)
$(interpreter-asm-objects): $(native-build)/%-asm.o: $(src)/%.S
$(compile-object)
2007-10-26 14:34:54 +00:00
$(driver-object): $(native-build)/%.o: $(src)/%.cpp
$(compile-object)
$(build)/classpath.jar: $(classpath-classes)
2007-10-26 00:03:26 +00:00
(wd=$$(pwd); \
cd $(classpath-build); \
$(jar) c0f $${wd}/$(@) $$(find . -name '*.class'))
$(classpath-object): $(build)/classpath.jar
(wd=$$(pwd); \
cd $(build); \
$(objcopy) -I binary classpath.jar \
-O $(object-format) -B $(object-arch) $${wd}/$(@))
$(generator-objects): $(native-build)/%.o: $(src)/%.cpp
@echo "compiling $(@)"
2007-10-23 17:22:48 +00:00
@mkdir -p -m 1777 $(dir $(@))
2007-10-26 14:34:54 +00:00
$(build-cxx) -DPOINTER_SIZE=$(pointer-size) $(build-cflags) -c $(<) -o $(@)
$(jni-objects): $(native-build)/%.o: $(classpath)/%.cpp
2007-06-25 01:34:07 +00:00
@echo "compiling $(@)"
2007-10-23 17:22:48 +00:00
@mkdir -p -m 1777 $(dir $(@))
$(cxx) $(jni-cflags) -c $(<) -o $(@)
2007-06-25 01:34:07 +00:00
$(archive): $(interpreter-objects) $(jni-objects) $(classpath-object)
@echo "creating $(@)"
2007-10-26 21:02:39 +00:00
rm -rf $(@)
$(ar) cru $(@) $(^)
$(ranlib) $(@)
2007-10-26 21:02:39 +00:00
$(interpreter): \
$(interpreter-objects) $(jni-objects) $(classpath-object) $(driver-object)
@echo "linking $(@)"
2007-10-26 21:02:39 +00:00
ifeq ($(platform),windows)
$(dlltool) -z $(@).def $(^)
$(dlltool) -k -d $(@).def -e $(@).exp
$(cc) $(@).exp $(^) $(lflags) -o $(@)
else
$(cc) $(^) $(lflags) -o $(@)
endif
2007-08-20 02:57:32 +00:00
@$(strip) --strip-all $(@)
@$(show-size) $(@)
$(generator): $(generator-objects)
@echo "linking $(@)"
$(build-cc) $(^) -o $(@)