diff options
author | Felix Fietkau <nbd@openwrt.org> | 2005-05-09 09:33:23 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2005-05-09 09:33:23 +0000 |
commit | f608b954528840d086c1aeb9d07cd2d73bd769de (patch) | |
tree | 78837e83f94a179a38950009e74a4153f06bbb87 /openwrt/package/popt | |
parent | a8832b617d22c09f6898966f0bc28965fa1093f8 (diff) | |
download | mtk-20170518-f608b954528840d086c1aeb9d07cd2d73bd769de.zip mtk-20170518-f608b954528840d086c1aeb9d07cd2d73bd769de.tar.gz mtk-20170518-f608b954528840d086c1aeb9d07cd2d73bd769de.tar.bz2 |
merge nico's package/rules.mk and package/templates.mk into one file, update packages that use this
SVN-Revision: 817
Diffstat (limited to 'openwrt/package/popt')
-rw-r--r-- | openwrt/package/popt/Makefile | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/openwrt/package/popt/Makefile b/openwrt/package/popt/Makefile index 7297ce7..64e2e16 100644 --- a/openwrt/package/popt/Makefile +++ b/openwrt/package/popt/Makefile @@ -16,14 +16,9 @@ PKG_CAT:=zcat PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION) PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install -include $(TOPDIR)/package/templates.mk - -$(eval $(call PKG_template,LIBPOPT,libpopt,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH))) - include $(TOPDIR)/package/rules.mk -COMPILE_TARGETS += install-dev -CLEAN_TARGETS += uninstall-dev +$(eval $(call PKG_template,LIBPOPT,libpopt,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH))) $(PKG_BUILD_DIR)/.configured: $(PKG_BUILD_DIR)/.prepared (cd $(PKG_BUILD_DIR); rm -rf config.{cache,status} ; \ @@ -79,3 +74,6 @@ uninstall-dev: -$(MAKE) -C $(PKG_BUILD_DIR) \ DESTDIR="$(STAGING_DIR)" \ uninstall + +compile: install-dev +clean: uninstall-dev |