jpl.fli.Makefile Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sigma-component Show documentation
Show all versions of sigma-component Show documentation
Sigma knowledge engineering system is an system for developing, viewing and debugging theories in first
order logic. It works with Knowledge Interchange Format (KIF) and is optimized for the Suggested Upper Merged
Ontology (SUMO) www.ontologyportal.org.
The newest version!
#tabstop=4
##======================================================================/
## File: $Id: Makefile,v 1.1.1.1 2004/02/20 19:00:31 apease Exp $
## Author: Fred Dushin
## Date: $Date: 2004/02/20 19:00:31 $
##
## Description:
##
##
##----------------------------------------------------------------------/
## Copyright (C) 1998 Fred Dushin
##
## This library is free software; you can redistribute it and/or
## modify it under the terms of the GNU Library Public License
## as published by the Free Software Foundation; either version 2
## of the License, or (at your option) any later version.
##
## This library 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 Library Public License for more details.
##======================================================================/
SRCROOTDIR = ../../..
include $(SRCROOTDIR)/rules.mk
PACKAGENAME = jpl.fli
PACKAGEPATH = jpl/fli
SOURCES= \
IntHolder.java \
LongHolder.java \
PointerHolder.java \
DoubleHolder.java \
StringHolder.java \
term_t.java \
atom_t.java \
functor_t.java \
predicate_t.java \
qid_t.java \
fid_t.java \
module_t.java \
Prolog.java \
one: $(SOURCES:.java=.o)
all:
$(JCC) $(SOURCES)
touch $(SOURCES:.java=.o)
clean:
rm -f $(SOURCES:.java=.o)
remove:
rm -rf $(CLASSDESTDIR)/$(PACKAGEPATH)
build: clean remove all