summaryrefslogtreecommitdiffstats
path: root/tools/flock/Makefile
diff options
context:
space:
mode:
authornbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>2010-10-29 13:39:18 +0000
committernbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>2010-10-29 13:39:18 +0000
commit0ca3c6b768b43104ada4c364efcd540a4176d9a6 (patch)
tree803ad32078672215c2158375b8b1e96348893423 /tools/flock/Makefile
parentc5385a49f39f2752c4f766e812a09958c6363119 (diff)
add a stripped down (and portable) version of flock to the host tools
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@23707 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'tools/flock/Makefile')
-rw-r--r--tools/flock/Makefile22
1 files changed, 22 insertions, 0 deletions
diff --git a/tools/flock/Makefile b/tools/flock/Makefile
new file mode 100644
index 000000000..64a8655b8
--- /dev/null
+++ b/tools/flock/Makefile
@@ -0,0 +1,22 @@
+#
+# Copyright (C) 2006-2008 OpenWrt.org
+#
+# This is free software, licensed under the GNU General Public License v2.
+# See /LICENSE for more information.
+#
+include $(TOPDIR)/rules.mk
+
+PKG_NAME := flock
+
+include $(INCLUDE_DIR)/host-build.mk
+
+define Host/Compile
+ mkdir -p $(HOST_BUILD_DIR)
+ $(HOSTCC) $(HOST_CFLAGS) -o $(HOST_BUILD_DIR)/flock src/flock.c
+endef
+
+define Host/Install
+ $(INSTALL_BIN) $(HOST_BUILD_DIR)/flock $(STAGING_DIR_HOST)/bin/
+endef
+
+$(eval $(call HostBuild))