summaryrefslogtreecommitdiff
path: root/tools/mkcrypt/Makefile
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2010-07-05 15:32:35 +0200
committerWaldemar Brodkorb <wbx@openadk.org>2010-07-05 15:32:35 +0200
commit1879491b2b6e799b20ac06d1b510726eb200944f (patch)
tree50759d89be66d701f4dc488dba56ca76926232f8 /tools/mkcrypt/Makefile
parent643a35a70d54283ab5c0456ff779ac843fe37741 (diff)
add menu based configuration of a password
Diffstat (limited to 'tools/mkcrypt/Makefile')
-rw-r--r--tools/mkcrypt/Makefile22
1 files changed, 22 insertions, 0 deletions
diff --git a/tools/mkcrypt/Makefile b/tools/mkcrypt/Makefile
new file mode 100644
index 000000000..e6c8d83e1
--- /dev/null
+++ b/tools/mkcrypt/Makefile
@@ -0,0 +1,22 @@
+# This file is part of the OpenADK project. OpenADK is copyrighted
+# material, please see the LICENCE file in the top-level directory.
+
+include $(TOPDIR)/rules.mk
+
+PKG_NAME:= mkcrypt
+PKG_VERSION:= 0.1
+PKG_RELEASE:= 1
+NO_DISTFILES:= 1
+
+include ../rules.mk
+
+$(WRKBUILD)/.compiled: ${WRKDIST}/.prepared
+ $(HOSTCC) -o $(WRKBUILD)/mkcrypt mkcrypt.c
+ touch $@
+
+$(WRKBUILD)/.installed: $(WRKBUILD)/.compiled
+ $(INSTALL_BIN) $(WRKBUILD)/mkcrypt \
+ ${STAGING_TOOLS}/bin
+ touch $@
+
+include $(TOPDIR)/mk/tools.mk