Blame


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