diff options
author | Patrick McDermott <patrick.mcdermott@libiquity.com> | 2019-04-10 00:20:18 (EDT) |
---|---|---|
committer | Patrick McDermott <patrick.mcdermott@libiquity.com> | 2019-04-10 00:23:24 (EDT) |
commit | 354fd85e386e378fea4d70c233b5474d0135a9b0 (patch) | |
tree | 572ba55e997bd88b6556fe9def8c8cd5547105d8 | |
parent | 9a4ba891a9fdc8a8cb4302b7595110ed781246d5 (diff) |
3rdparty/local.mk: Build, clean, and install usign
-rw-r--r-- | 3rdparty/local.mk | 12 | ||||
-rw-r--r-- | Makefile.am | 1 |
2 files changed, 13 insertions, 0 deletions
diff --git a/3rdparty/local.mk b/3rdparty/local.mk new file mode 100644 index 0000000..bd9b377 --- /dev/null +++ b/3rdparty/local.mk @@ -0,0 +1,12 @@ +pkglibexecdir = $(libexecdir)/$(PACKAGE) +pkglibexec_SCRIPTS = 3rdparty/usign/usign$(EXEEXT) + +3rdparty/usign/usign$(EXEEXT): + (cd 3rdparty/usign/ && make) + +clean-local: + -(cd 3rdparty/usign/ && make clean) + +distclean-local: + -rm -Rf 3rdparty/usign/CMakeFiles/ + -rm -f 3rdparty/usign/CMakeCache.txt 3rdparty/usign/cmake_install.cmake diff --git a/Makefile.am b/Makefile.am index 3037930..2734a61 100644 --- a/Makefile.am +++ b/Makefile.am @@ -163,3 +163,4 @@ include $(top_srcdir)/src/local.mk include $(top_srcdir)/locale/local.mk include $(top_srcdir)/man/local.mk include $(top_srcdir)/tests/local.mk +include $(top_srcdir)/3rdparty/local.mk |