aboutsummaryrefslogblamecommitdiffstats
path: root/texlive-bin/Makefile
blob: e3ba85253ec39323572c6f8c920bfe423810be12 (plain) (tree)
1
2
       
                    















                                                     
.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