# Makefile for sclj-3.0 and beyond
# IMPORTANT NOTE: The xxx-no-link targets were removed. The administrator
# has to move the old version out of the way first if ze wants to keep it.

include Make.vars

all: install

install:
	(cd src && $(MAKE) install)
	(cd man && $(MAKE) install)

gzman: install
	(cd man && $(MAKE) gzman)

uninstall:
	(cd src && $(MAKE) uninstall)
	(cd man && $(MAKE) uninstall)

