added install-devel target, still not done...

Signed-off-by: Alex A. Naanou <alex.nanou@gmail.com>
This commit is contained in:
Alex A. Naanou 2021-12-04 02:06:07 +03:00
parent dd2107b3db
commit 147f600390

View File

@ -253,8 +253,22 @@ uninstall-local: INSTALL_PATH := $(TEX_LOCAL)
uninstall-local: uninstall uninstall-local: uninstall
# XXX might be a good idea to add install-devel which would simply link # XXX need to make this work for windows...
# the install dir and the build (or "installed"?) dir... # ...this must depend not on the OS but rather on in what context
# (cygwin/wsl/windows), latex is running...
# ...this seems to work:
# > mkling TO FROM
# but like ln, it's args are in the wrong order...
# ...cp -s creates links usable from cygwin but not usable from
# windows...
.PHONY: install-devel
install-devel: INSTALL_PATH := $(TEX_LOCAL)
install-devel: CODE_INSTALL := copy
install-devel: CP := cp -s
install-devel: install
.PHONY: uninstall-devel
uninstall-devel: uninstall
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - # - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -