summaryrefslogtreecommitdiff
path: root/toolchain/expat/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'toolchain/expat/Makefile')
-rw-r--r--toolchain/expat/Makefile31
1 files changed, 31 insertions, 0 deletions
diff --git a/toolchain/expat/Makefile b/toolchain/expat/Makefile
new file mode 100644
index 000000000..6d1c6215b
--- /dev/null
+++ b/toolchain/expat/Makefile
@@ -0,0 +1,31 @@
+# This file is part of the OpenADK project. OpenADK is copyrighted
+# material, please see the LICENCE file in the top-level directory.
+
+include $(ADK_TOPDIR)/rules.mk
+include Makefile.inc
+include ../rules.mk
+include ${ADK_TOPDIR}/mk/buildhlp.mk
+
+ifeq (${ADK_MAKE_PARALLEL},y)
+MPC_MAKEOPTS+= -j${ADK_MAKE_JOBS}
+endif
+
+$(WRKBUILD)/.configured:
+ (cd $(WRKBUILD); \
+ $(WRKBUILD)/configure \
+ --prefix=$(STAGING_HOST_DIR)/usr \
+ --enable-static \
+ --disable-shared \
+ --without-docbook \
+ );
+ touch $@
+
+$(WRKBUILD)/.compiled: $(WRKBUILD)/.configured
+ $(MAKE) ${MPC_MAKEOPTS} -C $(WRKBUILD) all
+ touch $@
+
+$(WRKBUILD)/.installed: $(WRKBUILD)/.compiled
+ $(MAKE) -C $(WRKBUILD) install
+ touch $@
+
+include ${ADK_TOPDIR}/mk/toolchain.mk