aboutsummaryrefslogblamecommitdiffstats
path: root/texlive-bin/Makefile
blob: 4b21f554b38ad4aba0b2a08ceeefd87377eb18b0 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
















                                                     
.POSIX:

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