Index: srtp/Makefile.in |
diff --git a/srtp/Makefile.in b/srtp/Makefile.in |
index 002d25df8fd54a1294b332c0f8ba1a1516977f96..0f7ef5fd652d1a5f4a4efad3b85fbab92dd3f850 100644 |
--- a/srtp/Makefile.in |
+++ b/srtp/Makefile.in |
@@ -202,6 +202,18 @@ test/rdbx_driver$(EXE): test/rdbx_driver.c test/getopt_s.c |
test/dtls_srtp_driver$(EXE): test/dtls_srtp_driver.c test/getopt_s.c |
$(COMPILE) $(LDFLAGS) -o $@ $^ $(LIBS) $(SRTPLIB) |
+crypto/test/cipher_driver$(EXE): crypto/test/cipher_driver.c test/getopt_s.c |
+ $(COMPILE) $(LDFLAGS) -o $@ $^ $(LIBS) $(SRTPLIB) |
+ |
+crypto/test/kernel_driver$(EXE): crypto/test/kernel_driver.c test/getopt_s.c |
+ $(COMPILE) $(LDFLAGS) -o $@ $^ $(LIBS) $(SRTPLIB) |
+ |
+crypto/test/rand_gen$(EXE): crypto/test/rand_gen.c test/getopt_s.c |
+ $(COMPILE) $(LDFLAGS) -o $@ $^ $(LIBS) $(SRTPLIB) |
+ |
+crypto/test/rand_gen_soak$(EXE): crypto/test/rand_gen_soak.c test/getopt_s.c |
+ $(COMPILE) $(LDFLAGS) -o $@ $^ $(LIBS) $(SRTPLIB) |
+ |
test: $(testapp) |
@echo "Build done. Please run '$(MAKE) runtest' to run self tests." |
@@ -252,15 +264,15 @@ libsrtpdoc: |
install: |
$(INSTALL) -d $(DESTDIR)$(includedir)/srtp |
$(INSTALL) -d $(DESTDIR)$(libdir) |
- $(INSTALL) -d $(DESTDIR)$(bindir) |
cp $(srcdir)/include/*.h $(DESTDIR)$(includedir)/srtp |
cp $(srcdir)/crypto/include/*.h $(DESTDIR)$(includedir)/srtp |
if [ "$(srcdir)" != "." ]; then cp crypto/include/*.h $(DESTDIR)$(includedir)/srtp; fi |
if [ -f libsrtp.a ]; then cp libsrtp.a $(DESTDIR)$(libdir)/; fi |
if [ -f libsrtp.dll.a ]; then cp libsrtp.dll.a $(DESTDIR)$(libdir)/; fi |
if [ -f libsrtp.$(SHAREDLIBSUFFIX) ]; then \ |
+ $(INSTALL) -d $(DESTDIR)$(SHAREDLIB_DIR); \ |
cp libsrtp.$(SHAREDLIBSUFFIX) $(DESTDIR)$(SHAREDLIB_DIR)/; \ |
- cp libsrtp.$(SHAREDLIBSUFFIXNOVER) $(DESTDIR)$(SHAREDLIB_DIR)/; \ |
+ ln -sfn libsrtp.$(SHAREDLIBSUFFIX) $(DESTDIR)$(SHAREDLIB_DIR)/libsrtp.$(SHAREDLIBSUFFIXNOVER); \ |
fi |
if [ "$(pkgconfig_DATA)" != "" ]; then \ |
$(INSTALL) -d $(DESTDIR)$(pkgconfigdir); \ |