aboutsummaryrefslogtreecommitdiffstats
path: root/texlive-bin/Makefile
blob: e3ba85253ec39323572c6f8c920bfe423810be12 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
.POSIX:
include ../common.mk

install:
	if test -d ~/.texlive; then \
		test ! -d ~/.var/cache/texlive && \
		mkdir -p -- ~/.var/cache && \
		mv ~/.texlive ~/.var/cache/texlive; \
	else \
		mkdir -p -- ~/.var/cache/texlive; \
	fi
	ln -sf -- .var/cache/texlive ~/.texlive

uninstall:
	-rm -rf -- ~/.var/cache/texlive
	-rm -rf -- ~/.texlive

.PHONY: install uninstall