temporary hack.
[openwrt.git] / obsolete-buildroot / Makefile
index cf68d06..304c802 100644 (file)
@@ -28,7 +28,7 @@
 #
 #############################################################
 
-SNAPSHOT:=20040531
+SNAPSHOT:=20040705
 
 ARCH:=mipsel
 USE_UCLIBC_SNAPSHOT:=$(SNAPSHOT)
@@ -40,6 +40,9 @@ BUILD_WITH_LARGEFILE:=true
 
 OPTIMIZE_FOR_CPU=$(ARCH)
 
+# directory used by 'make publish'
+PUB_DIR:=/var/www/html/testsite/ipkg
+
 # Command used to download source code
 WGET:=wget --passive-ftp
 
@@ -95,7 +98,9 @@ INSTALL_LIBGCJ:=false
 # The list of stuff to build for the target filesystem
 #
 #############################################################
-TARGETS:=host-sed gcc3_3 openwrt-base openwrt-code.bin
+TARGETS:=host-sed gcc3_3 ipkg-utils openwrt-base openwrt-code.bin
+
+PACKAGES:=oidentd iproute2 sched-modules wshaper
 
 #############################################################
 #
@@ -176,14 +181,20 @@ else
 DISABLE_NLS:=--disable-nls
 endif
 
-
 all:   world
 
 TARGETS_CLEAN:=$(patsubst %,%-clean,$(TARGETS))
 TARGETS_SOURCE:=$(patsubst %,%-source,$(TARGETS))
 TARGETS_DIRCLEAN:=$(patsubst %,%-dirclean,$(TARGETS))
 
-world: $(DL_DIR) $(BUILD_DIR) $(STAGING_DIR) $(TARGET_DIR) $(TARGETS)
+
+PACKAGES_IPK:=$(patsubst %,%-ipk,$(PACKAGES))
+OPENWRT_IPK_DIR=$(SOURCE_DIR)/openwrt/ipkg
+
+$(BUILD_DIR)/Packages : $(PACKAGES_IPK)
+       (cd $(BUILD_DIR) ; $(IPKG_MAKE_INDEX) . > Packages)
+
+world: $(DL_DIR) $(BUILD_DIR) $(STAGING_DIR) $(TARGET_DIR) $(TARGETS) $(PACKAGES_IPK) $(BUILD_DIR)/Packages
        @echo "ALL DONE."
 
 .PHONY: all world clean dirclean distclean source $(TARGETS) \
@@ -214,9 +225,7 @@ $(STAGING_DIR):
 
 $(TARGET_DIR): $(DL_DIR)/$(OPENWRT_ROOT_SKEL)
        rm -rf $(TARGET_DIR)
-       #zcat $(SOURCE_DIR)/skel.tar.gz | tar -C $(BUILD_DIR) -xf -
        zcat $(DL_DIR)/$(OPENWRT_ROOT_SKEL) | tar -C $(BUILD_DIR) -xf -
-       #cp -a $(SOURCE_DIR)/target_skeleton/* $(TARGET_DIR)/
        -find $(TARGET_DIR) -type d -name CVS -exec rm -rf {} \; > /dev/null 2>&1
 
 source: $(TARGETS_SOURCE)
@@ -241,6 +250,14 @@ distclean:
                openwrt-linux.trx openwrt-g-code.bin openwrt-gs-code.bin \
                openwrt-kmodules.tar.bz2
 
+publish:       
+       chmod 644 $(BUILD_DIR)/Packages
+       chmod 644 $(BUILD_DIR)/Packages.filelist
+       chmod 644 $(BUILD_DIR)/*.ipk
+       cp $(BUILD_DIR)/Packages $(PUB_DIR)
+       cp $(BUILD_DIR)/Packages.filelist $(PUB_DIR)
+       cp $(BUILD_DIR)/*.ipk $(PUB_DIR)
+
 sourceball: 
        rm -rf $(BUILD_DIR)
        set -e; \
This page took 0.025601 seconds and 4 git commands to generate.