#
# Make file for iis
#

include ../../common_def

EEL_LIB=../../lib/libeel.a

EEL_OBJS=eel_bb.o eel_edge.o eel_log.o eel_snippet.o eel_cfg.o eel_executable.o eel_routine.o

all: $(EEL_LIB)

$(EEL_LIB): $(EEL_OBJS)
	ar vr $@ $(EEL_OBJS)

.SUFFIXES:  .cpp

.cpp.o:
	$(CC_CMD) $(CFLAGS) $(COMMON_DEFS) $(INCLUDE_DIRS) -c $<

clean:
	rm -f *.o *~	
