aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile18
1 files changed, 14 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index 0564cd6..4d25d65 100644
--- a/Makefile
+++ b/Makefile
@@ -1,9 +1,19 @@
.POSIX:
-DESTDIR=/usr/lib/minimun
+DESTDIR=/home/minimun/minimun
-install: $(DESTDIR)
+minimun: minimun.orig
+ sed 's:%%DEST%%:$(DESTDIR):' minimun.orig > minimun
+
+clean:
+ rm minimun
+
+install: $(DESTDIR) minimun
cp -t $(DESTDIR) minimun format.tex logo.png
-
+
+uninstall:
+ rm $(DESTDIR)/{minimun,format.tex,logo.png}
+ rmdir -p $(DESTDIR)
+
$(DESTDIR):
- mkdir -pv $@
+ mkdir -p $@