summaryrefslogtreecommitdiffstats
path: root/3rdparty/local.mk
diff options
context:
space:
mode:
Diffstat (limited to '3rdparty/local.mk')
-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