1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-09-20 22:29:50 +03:00

more fixes for the V= stuff

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@2225 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
nbd 2005-10-22 10:54:33 +00:00
parent 27f5f54107
commit 6f31459462
2 changed files with 8 additions and 8 deletions

View File

@ -20,7 +20,7 @@ include $(TOPDIR)/package/rules.mk
$(eval $(call PKG_template,BIND_SERVER,bind-server,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH))) $(eval $(call PKG_template,BIND_SERVER,bind-server,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH)))
$(eval $(call PKG_template,BIND_CLIENT,bind-client,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH))) $(eval $(call PKG_template,BIND_CLIENT,bind-client,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH)))
$(PKG_BUILD_DIR)/.configured: $(PKG_BUILD_DIR)/.prepared $(PKG_BUILD_DIR)/.configured:
(cd $(PKG_BUILD_DIR); rm -rf config.{cache,status} ; \ (cd $(PKG_BUILD_DIR); rm -rf config.{cache,status} ; \
$(TARGET_CONFIGURE_OPTS) \ $(TARGET_CONFIGURE_OPTS) \
CFLAGS="$(strip $(TARGET_CFLAGS))" \ CFLAGS="$(strip $(TARGET_CFLAGS))" \
@ -55,7 +55,7 @@ $(PKG_BUILD_DIR)/.configured: $(PKG_BUILD_DIR)/.prepared
); );
touch $(PKG_BUILD_DIR)/.configured touch $(PKG_BUILD_DIR)/.configured
$(PKG_BUILD_DIR)/.built: $(PKG_BUILD_DIR)/.configured $(PKG_BUILD_DIR)/.built:
$(MAKE) -C $(PKG_BUILD_DIR)/lib/dns \ $(MAKE) -C $(PKG_BUILD_DIR)/lib/dns \
CC="$(HOSTCC)" \ CC="$(HOSTCC)" \
CFLAGS="-O2" \ CFLAGS="-O2" \
@ -65,7 +65,7 @@ $(PKG_BUILD_DIR)/.built: $(PKG_BUILD_DIR)/.configured
$(MAKE) -C $(PKG_BUILD_DIR) \ $(MAKE) -C $(PKG_BUILD_DIR) \
DESTDIR="$(PKG_INSTALL_DIR)" \ DESTDIR="$(PKG_INSTALL_DIR)" \
all install all install
touch $(PKG_BUILD_DIR)/.built touch $@
$(IPKG_BIND_SERVER): $(IPKG_BIND_SERVER):
install -d -m0755 $(IDIR_BIND_SERVER)/usr/sbin install -d -m0755 $(IDIR_BIND_SERVER)/usr/sbin

View File

@ -19,7 +19,7 @@ include $(TOPDIR)/package/rules.mk
$(eval $(call PKG_template,LIBDB,libdb,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH))) $(eval $(call PKG_template,LIBDB,libdb,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH)))
$(PKG_BUILD_DIR)/.configured: $(PKG_BUILD_DIR)/.prepared $(PKG_BUILD_DIR)/.configured:
(cd $(PKG_BUILD_DIR)/build_unix ; \ (cd $(PKG_BUILD_DIR)/build_unix ; \
$(TARGET_CONFIGURE_OPTS) \ $(TARGET_CONFIGURE_OPTS) \
CFLAGS="$(TARGET_CFLAGS)" \ CFLAGS="$(TARGET_CFLAGS)" \
@ -61,14 +61,14 @@ $(PKG_BUILD_DIR)/.configured: $(PKG_BUILD_DIR)/.prepared
); );
touch $@ touch $@
$(PKG_BUILD_DIR)/.built: $(PKG_BUILD_DIR)/.configured $(PKG_BUILD_DIR)/.built:
rm -rf $(PKG_INSTALL_DIR) rm -rf $(PKG_INSTALL_DIR)
mkdir -p $(PKG_INSTALL_DIR) mkdir -p $(PKG_INSTALL_DIR)
$(MAKE) -C $(PKG_BUILD_DIR)/build_unix \ $(MAKE) -C $(PKG_BUILD_DIR)/build_unix \
DESTDIR="$(PKG_INSTALL_DIR)" install DESTDIR="$(PKG_INSTALL_DIR)" install
touch $@ touch $@
$(IPKG_LIBDB): $(STAGING_DIR)/usr/lib/libdb.so $(IPKG_LIBDB):
install -m0755 -d $(IDIR_LIBDB)/usr/lib install -m0755 -d $(IDIR_LIBDB)/usr/lib
cp -fpR $(PKG_INSTALL_DIR)/usr/lib/libdb*.so $(IDIR_LIBDB)/usr/lib/ cp -fpR $(PKG_INSTALL_DIR)/usr/lib/libdb*.so $(IDIR_LIBDB)/usr/lib/
$(RSTRIP) $(IDIR_LIBDB) $(RSTRIP) $(IDIR_LIBDB)
@ -87,5 +87,5 @@ uninstall-dev:
rm -rf $(STAGING_DIR)/usr/include/db.h rm -rf $(STAGING_DIR)/usr/include/db.h
rm -rf $(STAGING_DIR)/usr/lib/libdb*.{a,so} rm -rf $(STAGING_DIR)/usr/lib/libdb*.{a,so}
compile: install-dev compile-targets: install-dev
clean: uninstall-dev clean-targets: uninstall-dev