Removed binlog path

Removed binlog path
This commit is contained in:
MassimilianoPinto
2014-05-26 12:40:56 +02:00
parent 952650ef18
commit c23773c977

View File

@ -49,8 +49,6 @@ MODULES= libdebugcli.so libreadconnroute.so libtestroute.so
all: $(MODULES) all: $(MODULES)
(cd readwritesplit; make )
(cd binlog; make )
libtestroute.so: $(TESTOBJ) libtestroute.so: $(TESTOBJ)
$(CC) $(LDFLAGS) $(TESTOBJ) $(LIBS) -o $@ $(CC) $(LDFLAGS) $(TESTOBJ) $(LIBS) -o $@
@ -70,24 +68,20 @@ libreadwritesplit.so:
clean: clean:
rm -f $(OBJ) $(MODULES) rm -f $(OBJ) $(MODULES)
(cd readwritesplit; touch depend.mk; make clean) (cd readwritesplit; touch depend.mk; make clean)
(cd binlog; touch depend.mk; make clean)
tags: tags:
ctags $(SRCS) $(HDRS) ctags $(SRCS) $(HDRS)
(cd readwritesplit; make tags) (cd readwritesplit; make tags)
(cd binlog; make tags)
depend: depend:
@rm -f depend.mk @rm -f depend.mk
cc -M $(CFLAGS) $(SRCS) > depend.mk cc -M $(CFLAGS) $(SRCS) > depend.mk
(cd readwritesplit; touch depend.mk ; make depend) (cd readwritesplit; touch depend.mk ; make depend)
(cd binlog; touch depend.mk ; make depend)
install: $(MODULES) install: $(MODULES)
install -D $(MODULES) $(DEST)/MaxScale/modules install -D $(MODULES) $(DEST)/MaxScale/modules
(cd readwritesplit; make DEST=$(DEST) install) (cd readwritesplit; make DEST=$(DEST) install)
cleantests: cleantests:
$(MAKE) -C readwritesplit/test cleantests $(MAKE) -C readwritesplit/test cleantests
$(MAKE) -C test cleantests $(MAKE) -C test cleantests