diff options
author | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2005-03-23 22:25:11 +0000 |
---|---|---|
committer | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2005-03-23 22:25:11 +0000 |
commit | ff9963e6bb2c0eb327ea890ff067dd026f1a3f3b (patch) | |
tree | e91c723f8a3afd2d8b70905b8e7a0ad3d8febdc7 /openwrt/package/cifsmount/Makefile | |
parent | c4329d081f266a0ddf29fdbb5e709fcf065ea9ac (diff) |
add mount.cifs
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@437 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'openwrt/package/cifsmount/Makefile')
-rw-r--r-- | openwrt/package/cifsmount/Makefile | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/openwrt/package/cifsmount/Makefile b/openwrt/package/cifsmount/Makefile new file mode 100644 index 000000000..cc12c934c --- /dev/null +++ b/openwrt/package/cifsmount/Makefile @@ -0,0 +1,27 @@ +# $Id$ + +include $(TOPDIR)/rules.mk + +PKG_NAME:=cifsmount +PKG_VERSION:=1.5 +PKG_RELEASE:=1 + +PKG_BUILD_DIR:=$(BUILD_DIR)/cifsmount +PKG_IPK_DIR:=$(PKG_BUILD_DIR) +PKG_IPK:=$(PACKAGE_DIR)/$(PKG_NAME)_$(PKG_VERSION)-$(PKG_RELEASE)_$(ARCH).ipk + +$(PKG_BUILD_DIR)/sbin/mount.cifs: + mkdir -p $(PKG_BUILD_DIR)/sbin + $(CC) -o $(PKG_BUILD_DIR)/sbin/mount.cifs mount.cifs.c + +$(PKG_IPK): $(PKG_BUILD_DIR)/sbin/mount.cifs + $(SCRIPT_DIR)/make-ipkg-dir.sh $(PKG_IPK_DIR) $(PKG_NAME).control $(PKG_VERSION)-$(PKG_RELEASE) $(ARCH) + $(IPKG_BUILD) $(PKG_IPK_DIR) $(PACKAGE_DIR) + +source: +prepare: +compile: $(PKG_IPK) +install: + $(IPKG) install $(PKG_IPK) +clean: + rm -rf $(PKG_BUILD_DIR) |