# Makefile for parasol tutorial programs
# Created by Enomoto Sanshiro on 7 July 1999.
# Last updated by Enomoto Sanshiro on 8 September 1999.


TARGETS = yaciex
OBJS =  yaciex.o BitSet.o BitFunction.o BitOperators.o RepeatUntilStatement.o

PARASOL_PATH=../../..

CXX=g++
CPPFLAGS=
CXXFLAGS=
DEFS=
LIBS=-lm 


all: $(TARGETS)


yaciex: $(OBJS)
	$(CXX) $(CXXFLAGS) -o $@ $(OBJS) -L$(PARASOL_PATH) -lparasol $(LIBS)


.cc.o:
	$(CXX) $(CPPFLAGS) -I$(PARASOL_PATH) $(CXXFLAGS) $(DEFS) -c $< 


clean:
	-rm -f *.o
	-rm -f $(TARGETS)
