Updates for make install rules

This commit is contained in:
Mark Riddoch
2013-07-17 13:31:18 +02:00
parent 7e7737af05
commit 53c6d6daa6
3 changed files with 11 additions and 0 deletions

View File

@ -34,3 +34,8 @@ depend:
(cd log_manager; make depend)
(cd query_classifier; make depend)
(cd epoll_v1.0; make depend)
install:
(cd epoll_v1.0; make DEST=$(DEST) install)
(cd log_manager; make DEST=$(DEST)install)
(cd query_classifier; make DEST=$(DEST) install)

View File

@ -36,3 +36,6 @@ liblink:
$(LDLIBS) $(CPP_LDLIBS)
$(DEL) ./liblog_manager.so
$(LINK) ./liblog_manager.so.1.0.1 ./liblog_manager.so
install: liblink
install liblog_manager.so.1.0.1 liblog_manager.so $(DEST)/lib

View File

@ -42,3 +42,6 @@ liblink:
$(LDLIBS) $(LDMYSQL) $(CPP_LDLIBS)
$(DEL) ./libquery_classifier.so
$(LINK) ./libquery_classifier.so.1.0.1 ./libquery_classifier.so
install: liblink
install ./libquery_classifier.so.1.0.1 ./libquery_classifier.so $(DEST)/lib