1#
2# Copyright (C) 2011-2012 OpenWrt.org
3#
4# This is free software, licensed under the GNU General Public License v2.
5# See /LICENSE for more information.
6#
7
8include $(TOPDIR)/rules.mk
9
10PKG_NAME:=padjffs2
11PKG_VERSION:=1
12
13include $(INCLUDE_DIR)/host-build.mk
14
15define Host/Prepare
16	mkdir -p $(HOST_BUILD_DIR)
17	$(CP) ./src/* $(HOST_BUILD_DIR)/
18	find $(HOST_BUILD_DIR) -name .svn | $(XARGS) rm -rf
19endef
20
21define Host/Compile
22	$(MAKE) -C $(HOST_BUILD_DIR)
23endef
24
25define Host/Configure
26endef
27
28define Host/Install
29	$(CP) $(HOST_BUILD_DIR)/padjffs2 $(STAGING_DIR_HOST)/bin/
30endef
31
32define Host/Clean
33	rm -f $(STAGING_DIR_HOST)/bin/padjffs2
34endef
35
36$(eval $(call HostBuild))
37