
# Copyright Notices

# This software was developed for use by the U.S. Government as
# represented by the Administrator of the National Aeronautics and
# Space Administration. No copyright is claimed in the United States
# under 17 U.S.C. 105.

# This software may be used, copied, and provided to others only as
# permitted under the terms of the contract or other agreement under
# which it was acquired from the U.S. Government.  Neither title to nor
# ownership of the software is hereby transferred.  This notice shall
# remain on all copies of the software.

include ../commonMakeOptions.imake

DIRFLAG += -I$(EUROPA_DIR)/SearchLibrary

OBJS=	Token.o \
	ValueToken.o \
	ConstraintToken.o \
	Timeline.o \
	Slot.o \
	MessageCollector.o \
	TokenNetwork.o \
	Object.o \
	TokenType.o \
	SlotInfo.o \
	TimelineInfo.o \
	TokenNetworkMemento.o \
	Subscriber.o \
	SubscriptionManager.o \
	SubscriptionFilter.o \
	isTokNetValid.o \
	ArbitraryData.o

all: depend $(OBJS)
	echo $@ > $@

libTokenNetwork.a: $(OBJS)
	$(AR) $@ $?
	$(RANLIB) $@

libTokenNetwork.so: $(OBJS)
	$(LD) $(LDFLAG) -o $@ $(OBJS)

clean:
	/bin/rm -f *.o *.so *.a all depend core

depend: *.cc makefile $(EUROPA_DIR)/Includes/version.hh
	$(DEPEND)
	test -s $@

include depend
