31 lines
1.2 KiB
Diff
31 lines
1.2 KiB
Diff
|
diff --git a/Makefile.in b/Makefile.in
|
||
|
index cec35f1..46a9365 100644
|
||
|
--- a/Makefile.in
|
||
|
+++ b/Makefile.in
|
||
|
@@ -56,7 +56,7 @@ HEADERS=options.h dbutil.h session.h packet.h algo.h ssh.h buffer.h kex.h \
|
||
|
loginrec.h atomicio.h x11fwd.h agentfwd.h tcpfwd.h compat.h \
|
||
|
listener.h fake-rfc2553.h
|
||
|
|
||
|
-dropbearobjs=$(COMMONOBJS) $(CLISVROBJS) $(SVROBJS) @CRYPTLIB@
|
||
|
+dropbearobjs=$(COMMONOBJS) $(CLISVROBJS) $(SVROBJS)
|
||
|
dbclientobjs=$(COMMONOBJS) $(CLISVROBJS) $(CLIOBJS)
|
||
|
dropbearkeyobjs=$(COMMONOBJS) $(KEYOBJS)
|
||
|
dropbearconvertobjs=$(COMMONOBJS) $(CONVERTOBJS)
|
||
|
@@ -169,14 +169,14 @@ scp: $(SCPOBJS) $(HEADERS) Makefile
|
||
|
# multi-binary compilation.
|
||
|
MULTIOBJS=
|
||
|
ifeq ($(MULTI),1)
|
||
|
- MULTIOBJS=dbmulti.o $(sort $(foreach prog, $(PROGRAMS), $($(prog)objs))) @CRYPTLIB@
|
||
|
+ MULTIOBJS=dbmulti.o $(sort $(foreach prog, $(PROGRAMS), $($(prog)objs)))
|
||
|
CFLAGS+=$(addprefix -DDBMULTI_, $(PROGRAMS)) -DDROPBEAR_MULTI
|
||
|
endif
|
||
|
|
||
|
dropbearmulti: multilink
|
||
|
|
||
|
multibinary: $(HEADERS) $(MULTIOBJS) $(LIBTOM_DEPS) Makefile
|
||
|
- $(CC) $(LDFLAGS) -o dropbearmulti$(EXEEXT) $(MULTIOBJS) $(LIBS)
|
||
|
+ $(CC) $(LDFLAGS) -o dropbearmulti$(EXEEXT) $(MULTIOBJS) $(LIBS) @CRYPTLIB@
|
||
|
|
||
|
multilink: multibinary $(addprefix link, $(PROGRAMS))
|
||
|
|