source: freewrt/tools/jffs2/Makefile@ 02f3bf6

freewrt_2_0
Last change on this file since 02f3bf6 was d8b7ea7, checked in by Waldemar Brodkorb <wbx@…>, 4 months ago

jffs2: add license header

  • Property mode set to 100644
File size: 785 bytes
Line 
1# This file is part of the FreeWRT project. FreeWRT is copyrighted
2# material, please see the LICENCE file in the top-level directory
3
4PKG_NAME= mtd-utils
5PKG_VERSION= 2.3.0
6PKG_MD5SUM= 06be1bd123cfea8575829e9b16e84f4b
7
8PKG_SOURCE= $(PKG_NAME)-$(PKG_VERSION).tar.bz2
9PKG_SOURCE_URL= https://infraroot.at/pub/mtd
10
11include $(TOPDIR)/rules.mk
12include ../rules.mk
13
14$(WRKBUILD)/mkfs.jffs2: ${WRKBUILD}/.prepared
15 (cd $(WRKBUILD) && ./configure --without-tests)
16 $(MAKE) -C $(WRKBUILD) mkfs.jffs2
17
18$(STAGING_DIR)/bin/mkfs.jffs2: $(WRKBUILD)/mkfs.jffs2
19 mkdir -p $(STAGING_DIR)/bin
20 $(CP) $< $@
21
22source: $(DL_DIR)/$(PKG_SOURCE)
23prepare: ${WRKBUILD}/.prepared
24compile: $(WRKBUILD)/mkfs.jffs2 $(STAGING_DIR)/bin/mkfs.jffs2
25install: $(STAGING_DIR)/bin/mkfs.jffs2
26clean:
27 rm -rf $(WRKBUILD)
Note: See TracBrowser for help on using the repository browser.