# Copyright (C) 2015-2019  Stephan Kreutzer
#
# This file is part of option_picker_1, a submodule of the
# digital_publishing_workflow_tools package.
#
# option_picker_1 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.
#
# option_picker_1 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 option_picker_1. If not, see <http://www.gnu.org/licenses/>.



.PHONY: all option_picker_1 clean



all: option_picker_1
option_picker_1: option_picker_1.class



option_picker_1.class: option_picker_1.java OptionPickerDialog.class JobFileProcessor.class OptionEntry.class InfoMessage.class ProgramTerminationException.class
	javac -encoding UTF-8 option_picker_1.java

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

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

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

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

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

clean:
	rm -f ./*.class
