Blame


1 ab1569ee 2023-05-06 op DISTFILES = Makefile foot.html head.html index-header.html \
2 ab1569ee 2023-05-06 op logo-small.html search-header.html search.html
3 ab1569ee 2023-05-06 op
4 ab1569ee 2023-05-06 op all:
5 ab1569ee 2023-05-06 op false
6 ab1569ee 2023-05-06 op
7 ab1569ee 2023-05-06 op dist:
8 ab1569ee 2023-05-06 op mkdir -p ${DESTDIR}/
9 ab1569ee 2023-05-06 op ${INSTALL} -m 0644 ${DISTFILES} ${DESTDIR}/
10 ab1569ee 2023-05-06 op
11 ab1569ee 2023-05-06 op install:
12 38232a0a 2023-05-07 op mkdir -p ${DESTDIR}${SYSCONFDIR}/smarc/
13 38232a0a 2023-05-07 op ${INSTALL_DATA} *.html ${DESTDIR}${SYSCONFDIR}/smarc/
14 ab1569ee 2023-05-06 op
15 ab1569ee 2023-05-06 op uninstall:
16 38232a0a 2023-05-07 op rm -f ${DESTDIR}${SYSCONFDIR}/smarc/${DISTFILES}
17 ab1569ee 2023-05-06 op
18 ab1569ee 2023-05-06 op .PHONY: all dist install uninstall
19 ab1569ee 2023-05-06 op
20 ab1569ee 2023-05-06 op include ../config.mk