diff options
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 0000000000..cc12c934cc --- /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) |