blob: cd12a9634138dad16a916fce5459424330db96b9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
turn dropbearmulti into a real target so we don't constantly re-link it
otherwise make has no idea what "multibinary" is and so always re-links it
--- a/Makefile.in
+++ b/Makefile.in
@@ -175,10 +175,10 @@ ifeq ($(MULTI),1)
CFLAGS+=$(addprefix -DDBMULTI_, $(PROGRAMS)) -DDROPBEAR_MULTI
endif
-dropbearmulti: multilink
+dropbearmulti$(EXEEXT): $(HEADERS) $(MULTIOBJS) $(LIBTOM_DEPS) Makefile
+ $(CC) $(LDFLAGS) -o $@ $(MULTIOBJS) $(LIBS)
-multibinary: $(HEADERS) $(MULTIOBJS) $(LIBTOM_DEPS) Makefile
- $(CC) $(LDFLAGS) -o dropbearmulti$(EXEEXT) $(MULTIOBJS) $(LIBS)
+multibinary: dropbearmulti$(EXEEXT)
multilink: multibinary $(addprefix link, $(PROGRAMS))
|