diff options
author | nico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2005-05-19 21:14:18 +0000 |
---|---|---|
committer | nico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2005-05-19 21:14:18 +0000 |
commit | a30fc45109b8f41d789036bdd9cc1ed9125ed2f8 (patch) | |
tree | b8351969b1dadbaabafe43482b81fc9ec7aaabaa /openwrt/package/nmap/Makefile | |
parent | 29dc4733187277b90e3671e5443eb620b75740fd (diff) |
Tweak package build
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@968 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'openwrt/package/nmap/Makefile')
-rw-r--r-- | openwrt/package/nmap/Makefile | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/openwrt/package/nmap/Makefile b/openwrt/package/nmap/Makefile index 69cc9259bf..6e685b4ea6 100644 --- a/openwrt/package/nmap/Makefile +++ b/openwrt/package/nmap/Makefile @@ -51,17 +51,16 @@ $(PKG_BUILD_DIR)/.configured: --with-libpcap="$(STAGING_DIR)/usr" \ --with-libpcre="$(STAGING_DIR)/usr" \ ); - touch $(PKG_BUILD_DIR)/.configured + touch $@ $(PKG_BUILD_DIR)/.built: - $(MAKE) -C $(PKG_BUILD_DIR) \ - $(TARGET_CONFIGURE_OPTS) \ - CCOPT="-fno-builtin -nostdinc++ -nodefaultlibs $(TARGET_CFLAGS)" mkdir -p $(PKG_INSTALL_DIR) $(MAKE) -C $(PKG_BUILD_DIR) \ + $(TARGET_CONFIGURE_OPTS) \ + CCOPT="-fno-builtin -nostdinc++ -nodefaultlibs $(TARGET_CFLAGS)" \ DESTDIR="$(PKG_INSTALL_DIR)" \ - install - touch $(PKG_BUILD_DIR)/.built + all install + touch $@ $(IPKG_NMAP): install -d -m0755 $(IDIR_NMAP)/usr/share/nmap |