BIN = timerTest
OBJS = timerTest.o

include $(WRAPPER_ROOT)/Makefile.common

LDLIBS = $(OBJS) $(LDFLAGS) \
	-lReactor -lMisc -lCebafACE

all: $(BIN)

$(BIN): $(OBJS)
	rm -f $@
	$(CXX) -o $@  $(LDLIBS)

clean:
	rm -f $(OBJS) timerTest *~
