summaryrefslogtreecommitdiffstats
path: root/3rdparty
diff options
context:
space:
mode:
authorPatrick McDermott <patrick.mcdermott@libiquity.com>2019-04-16 11:20:14 (EDT)
committer Patrick McDermott <patrick.mcdermott@libiquity.com>2019-04-16 11:20:14 (EDT)
commit45f425dc8ec7140595b7941a18fae42adb2344ec (patch)
tree6a64cdf91cb9789799b7f777bd1b4c379f824c6c /3rdparty
parent250892164853a4218b00336ca6fdaf9e775f9454 (diff)
3rdparty/local.mk: New file
Diffstat (limited to '3rdparty')
-rw-r--r--3rdparty/local.mk13
1 files changed, 13 insertions, 0 deletions
diff --git a/3rdparty/local.mk b/3rdparty/local.mk
new file mode 100644
index 0000000..7a294b7
--- /dev/null
+++ b/3rdparty/local.mk
@@ -0,0 +1,13 @@
+pkglibexecdir = $(libexecdir)/$(PACKAGE)
+3rdparty_dirs = usign
+if EMBEDDED_USIGN
+pkglibexec_SCRIPTS = 3rdparty/usign/usign$(EXEEXT)
+3rdparty/usign/usign$(EXEEXT):
+ (cd 3rdparty/usign/ && $(MAKE) VERBOSE=$(V))
+clean-local:
+ -(cd 3rdparty/usign/ && $(MAKE) VERBOSE=$(V) clean)
+distclean-local:
+ -rm -Rf 3rdparty/usign/CMakeFiles/
+ -rm -f 3rdparty/usign/CMakeCache.txt 3rdparty/usign/Makefile \
+ 3rdparty/usign/cmake_install.cmake
+endif