From addfff8a62f611da759fdb31b20cf641ccf4cf30 Mon Sep 17 00:00:00 2001 From: witiko <witiko@gmail.com> Date: Thu, 22 Jan 2015 15:37:14 +0100 Subject: [PATCH] Make the behaviour of `make install` more obvious. --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 9fdb41a..03c143c 100644 --- a/Makefile +++ b/Makefile @@ -38,8 +38,8 @@ example.pdf: example.tex fithesis3.cls # into the directory provided as the "to" argument. install: @if [ -z "$(to)" ]; then echo "Usage: make to=DIRECTORY install"; exit 1; fi - mkdir --parents "$(to)" - cp --parents --verbose $(INSTALLFILES) "$(to)" + mkdir --parents "$(to)/fithesis3" + cp --parents --verbose $(INSTALLFILES) "$(to)/fithesis3" # This pseudo-target removes any existing auxiliary files. clean: -- GitLab