git ssb

0+

cel / sslh



Commit 70a2ea926efc8ca455b08d230b90789a57bc29c6

Makefile: fix parallel build

version.h is included by some .o files, but it is generated. As such, it
must be a dependency of those .o files.

Rather than filter exactly which .o file needs it, just add a generic
dependency for all .o files on version.h.

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Yann E. MORIN committed on 2/23/2017, 9:49:31 PM
Parent: e4a4e04bf87cc6460fe9790ffc4a796e60ab698c

Files changed

Makefilechanged
MakefileView
@@ -66,8 +66,10 @@
6666 ./genver.sh >version.h
6767
6868 sslh: sslh-fork sslh-select
6969
70+$(OBJS): version.h
71+
7072 sslh-fork: version.h $(OBJS) sslh-fork.o Makefile common.h
7173 $(CC) $(CFLAGS) $(LDFLAGS) -o sslh-fork sslh-fork.o $(OBJS) $(LIBS)
7274 #strip sslh-fork
7375

Built with git-ssb-web