summaryrefslogtreecommitdiff
path: root/vendor/Makefile.am
diff options
context:
space:
mode:
authorJörg Frings-Fürst <debian@jff.email>2021-11-29 20:51:58 +0100
committerJörg Frings-Fürst <debian@jff.email>2021-11-29 20:51:58 +0100
commit6e3e95a9da9458ddf0874b4bd1c8ce6b47fcef27 (patch)
tree6e3667709d99f857d90b9831426f6a32ee70d113 /vendor/Makefile.am
parentb29f419d68b26b75a44e3ac00748875f1003b900 (diff)
parentf2b3dda12a731c2e0971cb7889728edaf23f6cb0 (diff)
Merge branch 'upstream' into develop
Diffstat (limited to 'vendor/Makefile.am')
-rw-r--r--vendor/Makefile.am22
1 files changed, 0 insertions, 22 deletions
diff --git a/vendor/Makefile.am b/vendor/Makefile.am
deleted file mode 100644
index 46072c3..0000000
--- a/vendor/Makefile.am
+++ /dev/null
@@ -1,22 +0,0 @@
-cmockasrc = $(srcdir)/cmocka
-# Not just '$(builddir)/cmocka', because cmocka requires an out-of-source build
-cmockabuild = $(builddir)/cmocka_build
-cmockadist = $(builddir)/dist
-
-MAINTAINERCLEANFILES = \
- $(srcdir)/Makefile.in \
- "$(cmockabuild)" \
- "$(cmockadist)"
-
-libcmocka:
-if CMOCKA_INITIALIZED
- mkdir -p $(cmockabuild) $(cmockadist)
- ## Compensate for the cd in the paths
- (cd $(cmockabuild) && cmake -DCMAKE_INSTALL_PREFIX=../$(cmockadist) ../$(cmockasrc) && make && make install)
-endif
-
-check: libcmocka
-
-clean:
- rm -rf $(cmockabuild)
- rm -rf $(cmockainstall)