# Makefile for cmlog user client library
include ../Makefile.config

ifneq ($(TARGET), vxworks)
targets: copyscript
else
targets:
endif

copyscript: 
	if test ! -d $(BINDIR); then mkdir -p $(BINDIR); else echo; fi
	cp cmlog_activate $(BINDIR)		

clean:
	rm -rf *~ core

