Obsolete
/
libipc-old
Archived
3
0
Fork 0

Added missing .h files to project.zsh and Makefile.

more_to_read
Luka Vandervelden 2018-11-10 01:49:35 +09:00
parent 51881ee831
commit 7699aa8d27
2 changed files with 7 additions and 1 deletions

View File

@ -196,6 +196,8 @@ $(PACKAGE)-$(VERSION).tar.gz: distdir
$(PACKAGE)-$(VERSION)/Makefile \
$(PACKAGE)-$(VERSION)/project.zsh \
$(PACKAGE)-$(VERSION)/error.h \
$(PACKAGE)-$(VERSION)/ipc.h \
$(PACKAGE)-$(VERSION)/event.h \
$(PACKAGE)-$(VERSION)/client.c \
$(PACKAGE)-$(VERSION)/communication.c \
$(PACKAGE)-$(VERSION)/logger.c \
@ -216,6 +218,8 @@ $(PACKAGE)-$(VERSION).tar.xz: distdir
$(PACKAGE)-$(VERSION)/Makefile \
$(PACKAGE)-$(VERSION)/project.zsh \
$(PACKAGE)-$(VERSION)/error.h \
$(PACKAGE)-$(VERSION)/ipc.h \
$(PACKAGE)-$(VERSION)/event.h \
$(PACKAGE)-$(VERSION)/client.c \
$(PACKAGE)-$(VERSION)/communication.c \
$(PACKAGE)-$(VERSION)/logger.c \
@ -236,6 +240,8 @@ $(PACKAGE)-$(VERSION).tar.bz2: distdir
$(PACKAGE)-$(VERSION)/Makefile \
$(PACKAGE)-$(VERSION)/project.zsh \
$(PACKAGE)-$(VERSION)/error.h \
$(PACKAGE)-$(VERSION)/ipc.h \
$(PACKAGE)-$(VERSION)/event.h \
$(PACKAGE)-$(VERSION)/client.c \
$(PACKAGE)-$(VERSION)/communication.c \
$(PACKAGE)-$(VERSION)/logger.c \

View File

@ -6,5 +6,5 @@ targets=(libipc)
type[libipc]=library
sources[libipc]="$(ls *.c)"
dist=(Makefile project.zsh error.h)
dist=(Makefile project.zsh error.h ipc.h event.h)