blob: 1a34792c95abf967ce9725eceb64a594c0edac92 [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 jp
-rm -f core *~ *.class *.jar
realclean: clean