# This file is part of the Java Card Firewall Tester program.
# 
# Authors: 
# 
# Wojciech Mostowski, woj@cs.ru.nl
# Erik Poll, erikpoll@cs.ru.nl
# Radboud University Nijmegen
# The Netherlands
# 
# Copyright (c) Wojciech Mostowski, Erik Poll,
# Radboud University Nijmegen (RU),
# Stichting Technische Wetenschappen (STW)
# 
# The Java Card Firewall Tester has been developed for the PinPas Java
# Card project, see http://www.win.tue.nl/pinpasjc/. The program is
# distributed under the licence terms that can be found in the LICENCE
# file in the main installation directory. Please refer to the LICENCE &
# README files for further information.

JAVAC=$(JAVA_HOME)/bin/javac
JAVADOC=$(JAVA_HOME)/bin/javadoc

all: bin
	$(JAVAC)\
	   -d bin \
	   -classpath src:$(JARS) \
	   src/sos/smartcards/firewallhost/*.java
	cd bin; jar -cvef sos.smartcards.firewallhost.FirewallHost firewallhost.jar sos 
	mv bin/firewallhost.jar .

bin:
	mkdir -p bin

clean:
	rm -rf bin


