Blame


1 6cd13ce7 2022-01-13 op SUBDIRS = kamictl kamid kamiftp kamirepl ninepscript regress
2 bbcba3ed 2022-01-10 op
3 573608ba 2022-01-13 op EXTRA_DIST = compat/imsg.h \
4 573608ba 2022-01-13 op compat/ohash.h \
5 573608ba 2022-01-13 op compat/queue.h \
6 573608ba 2022-01-13 op compat/tree.h \
7 a37a930c 2022-01-30 op compat/vis.h \
8 a37a930c 2022-01-30 op contrib/9ps-mode.el \
9 a37a930c 2022-01-30 op contrib/Makefile \
10 a37a930c 2022-01-30 op contrib/README.md \
11 a37a930c 2022-01-30 op contrib/fingerprint \
12 a37a930c 2022-01-30 op contrib/gencert
13 573608ba 2022-01-13 op
14 bbcba3ed 2022-01-10 op AM_CPPFLAGS += -DKAMID_VERSION='"@VERSION"' \
15 bbcba3ed 2022-01-10 op -I$(top_srcdir)/lib \
16 bbcba3ed 2022-01-10 op -I$(top_srcdir)/compat
17 bbcba3ed 2022-01-10 op
18 bbcba3ed 2022-01-10 op LDADD = $(LIBOBJS)
19 bbcba3ed 2022-01-10 op
20 892614d3 2022-01-10 op SUDO ?= sudo
21 892614d3 2022-01-10 op HAVE_LISP ?= no
22 892614d3 2022-01-10 op
23 892614d3 2022-01-10 op $(top_builddir)/ninepscript/ninepscript:
24 892614d3 2022-01-10 op ${MAKE} -C $(top_builddir)/ninepscript
25 892614d3 2022-01-10 op
26 892614d3 2022-01-10 op test: $(top_builddir)/ninepscript/ninepscript
27 892614d3 2022-01-10 op "${SUDO}" "$(top_builddir)"/ninepscript/ninepscript \
28 892614d3 2022-01-10 op -r $(top_srcdir)/regress/root \
29 892614d3 2022-01-10 op $(top_srcdir)/regress/ninepscript/*-suite.9ps
30 892614d3 2022-01-10 op @if [ "${HAVE_LISP}" = yes ]; then \
31 64570593 2022-01-10 op export PATH="$$(cd $(top_builddir)/kamid/; pwd):$$PATH"; \
32 892614d3 2022-01-10 op cd "$(top_srcdir)"/regress/lisp && \
33 892614d3 2022-01-10 op SUDO="${SUDO}" ./run.sh; \
34 892614d3 2022-01-10 op else \
35 892614d3 2022-01-10 op echo "skipping lisp suite (HAVE_LISP=yes to run it)."; \
36 892614d3 2022-01-10 op fi