mirror of
https://git.code.sf.net/p/linux-ima/ima-evm-utils
synced 2025-04-26 22:02:31 +02:00

The sourceforge wiki info is dated and requires a major overhaul. Some of the information already exists in the linux kernel documentation. For now, save it with the referenced html files. Signed-off-by: Mimi Zohar <zohar@linux.ibm.com>
48 lines
913 B
Makefile
48 lines
913 B
Makefile
SUBDIRS = src tests
|
|
if HAVE_PANDOC
|
|
SUBDIRS += doc
|
|
endif
|
|
|
|
if MANPAGE_DOCBOOK_XSL
|
|
dist_man_MANS = evmctl.1
|
|
endif
|
|
|
|
doc_DATA = examples/ima-genkey-self.sh examples/ima-genkey.sh examples/ima-gen-local-ca.sh
|
|
EXTRA_DIST = autogen.sh $(doc_DATA)
|
|
|
|
CLEANFILES = *.html *.xsl
|
|
|
|
ACLOCAL_AMFLAGS = -I m4
|
|
|
|
SRCS = $(HOME)/rpmbuild/SOURCES
|
|
SPEC = $(PACKAGE_NAME).spec
|
|
|
|
pkgname = $(PACKAGE_NAME)-$(PACKAGE_VERSION)
|
|
tarname = $(pkgname).tar.gz
|
|
|
|
$(tarname):
|
|
git archive --format=tar --prefix=$(pkgname)/ v$(PACKAGE_VERSION) $(FILES) | gzip >$@
|
|
|
|
tar: $(tarname)
|
|
|
|
rpm: $(tarname)
|
|
cp $(tarname) $(SRCS)/
|
|
rpmbuild -ba --nodeps $(SPEC)
|
|
|
|
if MANPAGE_DOCBOOK_XSL
|
|
evmctl.1.html: README
|
|
@asciidoc -o $@ $<
|
|
|
|
evmctl.1:
|
|
asciidoc -d manpage -b docbook -o evmctl.1.xsl README
|
|
xsltproc --nonet -o $@ $(MANPAGE_DOCBOOK_XSL) evmctl.1.xsl
|
|
rm -f evmctl.1.xsl
|
|
|
|
rmman:
|
|
rm -f evmctl.1
|
|
|
|
doc: evmctl.1.html rmman evmctl.1
|
|
endif
|
|
|
|
.PHONY: $(tarname)
|