# Copyright (C) 2014-2026 Stephan Kreutzer
#
# This file is part of hyperdex_1 workflow, a submodule of the
# digital_publishing_workflow_tools package.
#
# hyperdex_1 workflow is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License version 3 or any later version,
# as published by the Free Software Foundation.
#
# hyperdex_1 workflow is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License 3 for more details.
#
# You should have received a copy of the GNU Affero General Public License 3
# along with hyperdex_1 workflow. If not, see <http://www.gnu.org/licenses/>.



.PHONY: all hyperdex_1 clean



all: hyperdex_1
hyperdex_1: hyperdex_1.class



hyperdex_1.class: hyperdex_1.java InfoMessage.class ProgramTerminationException.class
	javac -encoding UTF-8 hyperdex_1.java

InfoMessage.class: InfoMessage.java
	javac -encoding UTF-8 InfoMessage.java

ProgramTerminationException.class: ProgramTerminationException.java
	javac -encoding UTF-8 ProgramTerminationException.java

clean:
	rm -f hyperdex_1.class
	rm -f ProgramTerminationException.class
	rm -f InfoMessage.class
