blob: 9fde5856d4bc390567e1b624c44534bb40d9e704 [file] [log] [blame]
################################################################
# Makefile for Prolog Cafe
################################################################
################################################################
# The following two definitions will be overridden.
#
# JAVAC : the command of Java compiler system
# (ex. javac)
# JAR : the command of Jar archive system
# (ex. jar)
#
JAVAC = javac
JAVACOPTS = -d . -Xlint
JAR = jar
JAROPTS = cvf
################################################################
lang:
$(JAVAC) $(JAVACOPTS) *.java
$(JAR) $(JAROPTS) lang.jar com/googlecode/prolog_cafe/lang/
clean:
-rm -f -r com
-rm -f core *~ *.class *.jar
realclean: clean