Updates for make install rules
This commit is contained in:
5
Makefile
5
Makefile
@ -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)
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
Reference in New Issue
Block a user