about summary refs log tree commit diff
path: root/system.mk
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2021-08-26 16:22:38 -0400
committerJune McEnroe <june@causal.agency>2021-08-26 16:22:38 -0400
commit42903aa6d5482af2377170017dd8d12c66cc1c2d (patch)
treef432d645f62e3fdaf2ea6891e03c0543e9ac6198 /system.mk
parentAdd version number generator (diff)
downloadexman-42903aa6d5482af2377170017dd8d12c66cc1c2d.tar.gz
exman-42903aa6d5482af2377170017dd8d12c66cc1c2d.zip
Support DESTDIR in install/uninstall
Diffstat (limited to 'system.mk')
-rw-r--r--system.mk6
1 files changed, 3 insertions, 3 deletions
diff --git a/system.mk b/system.mk
index 9a56c9d..4ed82be 100644
--- a/system.mk
+++ b/system.mk
@@ -17,11 +17,11 @@ clean:
 	rm -f ${DISTFILES}
 
 install: ${DISTFILES}
-	install -d ${EXMANDIR}/${SYSTEM}
+	install -d ${DESTDIR}${EXMANDIR}/${SYSTEM}
 .for distfile in ${DISTFILES}
-	${TAR} -x -f ${distfile} -C ${EXMANDIR}/${SYSTEM} \
+	${TAR} -x -f ${distfile} -C ${DESTDIR}${EXMANDIR}/${SYSTEM} \
 		--strip-components=${STRIP} '${FILES}' || ${ALLOW_FAILURE}
 .endfor
 
 uninstall:
-	rm -fr ${EXMANDIR}/${SYSTEM}
+	rm -fr ${DESTDIR}${EXMANDIR}/${SYSTEM}