summaryrefslogtreecommitdiffstats
path: root/target
diff options
context:
space:
mode:
authorwbx <wbx@3c298f89-4303-0410-b956-a3cf2f4a3e73>2005-02-21 06:03:54 +0000
committerwbx <wbx@3c298f89-4303-0410-b956-a3cf2f4a3e73>2005-02-21 06:03:54 +0000
commit82138f740a00c6669cc14dff128e34cf1168042b (patch)
treee29bf717217488e33087b449c9817eb5f0f9cb14 /target
parentf8d2c2cd6541ae6269deb4fed44fa7f712149d46 (diff)
remove DIST and add EXTRAVERSION, discussed with mbm. fixed dirclean target for linksys-stuff
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@279 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target')
-rw-r--r--target/Makefile.in24
1 files changed, 14 insertions, 10 deletions
diff --git a/target/Makefile.in b/target/Makefile.in
index 7a212e489..15cf6bded 100644
--- a/target/Makefile.in
+++ b/target/Makefile.in
@@ -1,5 +1,5 @@
# Default target skeleton stuff, may be overridden
-DIST=openwrt
+EXTRAVERSION=
TARGET_SKELETON=target/default/skel.tar.gz
TARGET_SKEL_DIR=target/default/target_skeleton
@@ -10,16 +10,20 @@ JFFS2FLAGS+=-a 131072
endif
-$(DIST)-linux.trx: openwrt-trx
- PATH=$(TARGET_PATH) trx -o $(DIST)-linux.trx $(LINUX_DIR)/$(LINUX_BINLOC) $(JFFS2FLAGS) $(IMAGE).$(ROOTFS)
+openwrt-linux.trx: openwrt-trx
+ PATH=$(TARGET_PATH) trx -o openwrt-linux$(EXTRAVERSION).trx \
+ $(LINUX_DIR)/$(LINUX_BINLOC) $(JFFS2FLAGS) $(IMAGE).$(ROOTFS)
-$(DIST)-gs-code.bin: openwrt-addpattern $(DIST)-linux.trx
- PATH=$(TARGET_PATH) addpattern -2 -i $(DIST)-linux.trx -o $(DIST)-gs-code.bin -g
+openwrt-gs-code.bin: openwrt-addpattern openwrt-linux.trx
+ PATH=$(TARGET_PATH) addpattern -2 -i openwrt-linux$(EXTRAVERSION).trx \
+ -o openwrt-gs-code$(EXTRAVERSION).bin -g
-$(DIST)-g-code.bin: $(DIST)-gs-code.bin
- sed -e "1s,^W54S,W54G," < $(DIST)-gs-code.bin > $(DIST)-g-code.bin
+openwrt-g-code.bin: openwrt-gs-code.bin
+ sed -e "1s,^W54S,W54G," < openwrt-gs-code$(EXTRAVERSION).bin > openwrt-g-code$(EXTRAVERSION).bin
-openwrt-image: openwrt $(DIST)-g-code.bin
+openwrt-image: openwrt openwrt-g-code.bin
-$(DIST)-image-clean:
- @-rm $(DIST)-* 2>/dev/null
+openwrt-image-clean:
+ @-rm openwrt-* 2>/dev/null
+
+openwrt-image-dirclean: openwrt-dirclean