gmid/contrib/Makefile
Omar Polo 1610f9541d rework the configure script
now it resembles less oconfigure and more the configure scripts I'm
using in my recent projects.  I'd argue it's more easy to use it.
2023-06-13 16:36:10 +00:00

21 lines
338 B
Makefile

DISTFILES = Makefile \
Dockerfile \
README \
gencert \
gmid.service \
gmid.sysusers \
mime.types \
renew-certs
all:
false
dist: ${DISTFILES}
mkdir -p ${DESTDIR}/
${INSTALL} -m 0644 ${DISTFILES} ${DESTDIR}/
cd ${DESTDIR} && chmod 755 gencert renew-certs
cp -R vim ${DESTDIR}/vim
.PHONY: all dist
include ../config.mk