1# top level project rules for the armemu-test project
2#
3LOCAL_DIR := $(GET_LOCAL_DIR)
4
5TARGET := armemu
6MODULES += \
7	lib/bio \
8	lib/partition \
9	lib/bcache \
10	lib/fs \
11	lib/fs/ext2 \
12	lib/gfx \
13	lib/gfxconsole \
14	lib/text \
15	lib/tga \
16	lib/evlog
17
18GLOBAL_DEFINES += \
19	WITH_KERNEL_EVLOG=1
20
21# extra rules to copy the armemu.conf file to the build dir
22#$(BUILDDIR)/armemu.conf: $(LOCAL_DIR)/armemu.conf
23#	@echo copy $< to $@
24#	$(NOECHO)cp $< $@
25
26#EXTRA_BUILDDEPS += $(BUILDDIR)/armemu.conf
27#GENERATED += $(BUILDDIR)/armemu.conf
28
29include project/virtual/test.mk
30