From f8b239b6d01e07827bbe60938422630831024b87 Mon Sep 17 00:00:00 2001 From: Philippe PITTOLI Date: Tue, 9 Oct 2018 13:22:34 +0200 Subject: [PATCH] makefile changes for msg.[cho] => message.[cho] --- core/Makefile | 38 +++++++++++++++++++------------------- 1 file changed, 19 insertions(+), 19 deletions(-) diff --git a/core/Makefile b/core/Makefile index 02e6cc1..55d3661 100644 --- a/core/Makefile +++ b/core/Makefile @@ -27,9 +27,9 @@ libipc.clean: libipc.so.clean libipc.a.clean libipc.uninstall: libipc.so.uninstall libipc.a.uninstall -libipc.so: communication.o logger.o msg.o process.o usocket.o utils.o +libipc.so: communication.o logger.o message.o process.o usocket.o utils.o @echo ' LD > libipc.so' - $(Q)$(CC) -o libipc.so -shared $(LDFLAGS) communication.o logger.o msg.o process.o usocket.o utils.o + $(Q)$(CC) -o libipc.so -shared $(LDFLAGS) communication.o logger.o message.o process.o usocket.o utils.o libipc.so.install: libipc.so @echo ' IN > $(LIBDIR)/libipc.so.0.0.1' @@ -56,9 +56,9 @@ libipc.so.uninstall: @echo ' RM > $(LIBDIR)/libipc.so' $(Q)rm -f '$(DESTDIR)$(LIBDIR)/libipc.so' -libipc.a: communication.o logger.o msg.o process.o usocket.o utils.o +libipc.a: communication.o logger.o message.o process.o usocket.o utils.o @echo ' LD > libipc.a' - $(Q)$(AR) rc 'libipc.a' communication.o logger.o msg.o process.o usocket.o utils.o + $(Q)$(AR) rc 'libipc.a' communication.o logger.o message.o process.o usocket.o utils.o libipc.a.install: libipc.a @echo ' IN > $(LIBDIR)/libipc.a' @@ -97,17 +97,17 @@ logger.o.clean: logger.o.uninstall: -msg.o: msg.c ./msg.h ./error.h ./usocket.h +message.o: message.c ./message.h ./error.h ./usocket.h @echo ' CC > msg.o' - $(Q)$(CC) $(CFLAGS) -fPIC -c msg.c -fPIC -o msg.o + $(Q)$(CC) $(CFLAGS) -fPIC -c message.c -fPIC -o message.o -msg.o.install: +message.o.install: -msg.o.clean: +message.o.clean: @echo ' RM > msg.o' - $(Q)rm -f msg.o + $(Q)rm -f message.o -msg.o.uninstall: +message.o.uninstall: process.o: process.c ./process.h @echo ' CC > process.o' @@ -163,12 +163,12 @@ $(DESTDIR)$(INCLUDEDIR): $(DESTDIR)$(MANDIR): @echo ' DIR > $(MANDIR)' $(Q)mkdir -p $(DESTDIR)$(MANDIR) -install: subdirs.install libipc.install libipc.so.install libipc.a.install communication.o.install logger.o.install msg.o.install process.o.install usocket.o.install utils.o.install communication.o.install logger.o.install msg.o.install process.o.install usocket.o.install utils.o.install +install: subdirs.install libipc.install libipc.so.install libipc.a.install communication.o.install logger.o.install message.o.install process.o.install usocket.o.install utils.o.install communication.o.install logger.o.install message.o.install process.o.install usocket.o.install utils.o.install @: subdirs.install: -uninstall: subdirs.uninstall libipc.uninstall libipc.so.uninstall libipc.a.uninstall communication.o.uninstall logger.o.uninstall msg.o.uninstall process.o.uninstall usocket.o.uninstall utils.o.uninstall communication.o.uninstall logger.o.uninstall msg.o.uninstall process.o.uninstall usocket.o.uninstall utils.o.uninstall +uninstall: subdirs.uninstall libipc.uninstall libipc.so.uninstall libipc.a.uninstall communication.o.uninstall logger.o.uninstall message.o.uninstall process.o.uninstall usocket.o.uninstall utils.o.uninstall communication.o.uninstall logger.o.uninstall message.o.uninstall process.o.uninstall usocket.o.uninstall utils.o.uninstall @: subdirs.uninstall: @@ -178,7 +178,7 @@ test: all subdirs subdirs.test subdirs.test: -clean: libipc.clean libipc.so.clean libipc.a.clean communication.o.clean logger.o.clean msg.o.clean process.o.clean usocket.o.clean utils.o.clean communication.o.clean logger.o.clean msg.o.clean process.o.clean usocket.o.clean utils.o.clean +clean: libipc.clean libipc.so.clean libipc.a.clean communication.o.clean logger.o.clean message.o.clean process.o.clean usocket.o.clean utils.o.clean communication.o.clean logger.o.clean message.o.clean process.o.clean usocket.o.clean utils.o.clean distclean: clean @@ -198,13 +198,13 @@ $(PACKAGE)-$(VERSION).tar.gz: distdir $(PACKAGE)-$(VERSION)/error.h \ $(PACKAGE)-$(VERSION)/communication.c \ $(PACKAGE)-$(VERSION)/logger.c \ - $(PACKAGE)-$(VERSION)/msg.c \ + $(PACKAGE)-$(VERSION)/message.c \ $(PACKAGE)-$(VERSION)/process.c \ $(PACKAGE)-$(VERSION)/usocket.c \ $(PACKAGE)-$(VERSION)/utils.c \ $(PACKAGE)-$(VERSION)/communication.h \ $(PACKAGE)-$(VERSION)/logger.h \ - $(PACKAGE)-$(VERSION)/msg.h \ + $(PACKAGE)-$(VERSION)/message.h \ $(PACKAGE)-$(VERSION)/process.h \ $(PACKAGE)-$(VERSION)/usocket.h \ $(PACKAGE)-$(VERSION)/utils.h @@ -218,13 +218,13 @@ $(PACKAGE)-$(VERSION).tar.xz: distdir $(PACKAGE)-$(VERSION)/error.h \ $(PACKAGE)-$(VERSION)/communication.c \ $(PACKAGE)-$(VERSION)/logger.c \ - $(PACKAGE)-$(VERSION)/msg.c \ + $(PACKAGE)-$(VERSION)/message.c \ $(PACKAGE)-$(VERSION)/process.c \ $(PACKAGE)-$(VERSION)/usocket.c \ $(PACKAGE)-$(VERSION)/utils.c \ $(PACKAGE)-$(VERSION)/communication.h \ $(PACKAGE)-$(VERSION)/logger.h \ - $(PACKAGE)-$(VERSION)/msg.h \ + $(PACKAGE)-$(VERSION)/message.h \ $(PACKAGE)-$(VERSION)/process.h \ $(PACKAGE)-$(VERSION)/usocket.h \ $(PACKAGE)-$(VERSION)/utils.h @@ -238,13 +238,13 @@ $(PACKAGE)-$(VERSION).tar.bz2: distdir $(PACKAGE)-$(VERSION)/error.h \ $(PACKAGE)-$(VERSION)/communication.c \ $(PACKAGE)-$(VERSION)/logger.c \ - $(PACKAGE)-$(VERSION)/msg.c \ + $(PACKAGE)-$(VERSION)/message.c \ $(PACKAGE)-$(VERSION)/process.c \ $(PACKAGE)-$(VERSION)/usocket.c \ $(PACKAGE)-$(VERSION)/utils.c \ $(PACKAGE)-$(VERSION)/communication.h \ $(PACKAGE)-$(VERSION)/logger.h \ - $(PACKAGE)-$(VERSION)/msg.h \ + $(PACKAGE)-$(VERSION)/message.h \ $(PACKAGE)-$(VERSION)/process.h \ $(PACKAGE)-$(VERSION)/usocket.h \ $(PACKAGE)-$(VERSION)/utils.h