Blame


1 cb11302c 2022-12-30 thomas bin_PROGRAMS = template
2 cb11302c 2022-12-30 thomas
3 cb11302c 2022-12-30 thomas include $(top_builddir)/Makefile.common
4 cb11302c 2022-12-30 thomas
5 cb11302c 2022-12-30 thomas template_SOURCES = template.c \
6 cb11302c 2022-12-30 thomas tmpl.c \
7 cb11302c 2022-12-30 thomas parse.y
8 cb11302c 2022-12-30 thomas
9 cb11302c 2022-12-30 thomas template_DEPENDENCIES = $(top_builddir)/compat/libopenbsd-compat.a
10 cb11302c 2022-12-30 thomas
11 cb11302c 2022-12-30 thomas man1_MANS = template.1
12 cb11302c 2022-12-30 thomas man7_MANS = template.7
13 cb11302c 2022-12-30 thomas
14 cb11302c 2022-12-30 thomas LDADD = -L$(top_builddir)/compat -lopenbsd-compat -lpthread -lm
15 cb11302c 2022-12-30 thomas if HOST_FREEBSD
16 cb11302c 2022-12-30 thomas LDADD += -lmd
17 cb11302c 2022-12-30 thomas endif