Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(372)

Unified Diff: srtp/crypto/Makefile.in

Issue 2344973002: Update libsrtp to version 2.0 (Closed)
Patch Set: Add '.' back to include_dirs Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « srtp/crypto/.cvsignore ('k') | srtp/crypto/VERSION » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: srtp/crypto/Makefile.in
diff --git a/srtp/crypto/Makefile.in b/srtp/crypto/Makefile.in
deleted file mode 100644
index 493843767e6f9bddcb79a339791b3738adb1809f..0000000000000000000000000000000000000000
--- a/srtp/crypto/Makefile.in
+++ /dev/null
@@ -1,111 +0,0 @@
-# Makefile for libcryptomodule.a
-#
-# David A. McGrew
-# Cisco Systems, Inc.
-
-srcdir = @srcdir@
-top_srcdir = @top_srcdir@
-top_builddir = @top_builddir@
-VPATH = @srcdir@
-
-CC = @CC@
-INCDIR = -Iinclude -I$(srcdir)/include -I$(top_srcdir)/include
-DEFS = @DEFS@
-CPPFLAGS= @CPPFLAGS@
-CFLAGS = @CFLAGS@
-LIBS = @LIBS@
-LDFLAGS = @LDFLAGS@ -L. -L..
-COMPILE = $(CC) $(DEFS) $(INCDIR) $(CPPFLAGS) $(CFLAGS)
-CRYPTOLIB = -lsrtp
-
-RANLIB = @RANLIB@
-
-# EXE defines the suffix on executables - it's .exe for cygwin, and
-# null on linux, bsd, and OS X and other OSes. we define this so that
-# `make clean` will work on the cygwin platform
-EXE = @EXE@
-# Random source.
-USE_OPENSSL = @USE_OPENSSL@
-
-ifdef ARCH
- DEFS += -D$(ARCH)=1
-endif
-
-ifdef sysname
- DEFS += -D$(sysname)=1
-endif
-
-.PHONY: dummy all runtest clean superclean
-
-dummy : all runtest
-
-# test applications
-ifneq (1, $(USE_OPENSSL))
-AES_CALC = test/aes_calc$(EXE)
-endif
-
-testapp = test/cipher_driver$(EXE) test/datatypes_driver$(EXE) \
- test/stat_driver$(EXE) test/sha1_driver$(EXE) \
- test/kernel_driver$(EXE) $(AES_CALC) test/rand_gen$(EXE) \
- test/env$(EXE)
-
-# data values used to test the aes_calc application for AES-128
-k128=000102030405060708090a0b0c0d0e0f
-p128=00112233445566778899aabbccddeeff
-c128=69c4e0d86a7b0430d8cdb78070b4c55a
-
-
-# data values used to test the aes_calc application for AES-256
-k256=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f
-p256=00112233445566778899aabbccddeeff
-c256=8ea2b7ca516745bfeafc49904b496089
-
-
-runtest: $(testapp)
- test/env$(EXE) # print out information on the build environment
- @echo "running crypto test applications..."
-ifneq (1, $(USE_OPENSSL))
- test `test/aes_calc $(k128) $(p128)` = $(c128)
- test `test/aes_calc $(k256) $(p256)` = $(c256)
-endif
- test/cipher_driver$(EXE) -v >/dev/null
- test/datatypes_driver$(EXE) -v >/dev/null
- test/stat_driver$(EXE) >/dev/null
- test/sha1_driver$(EXE) -v >/dev/null
- test/kernel_driver$(EXE) -v >/dev/null
- test/rand_gen$(EXE) -n 256 >/dev/null
- @echo "crypto test applications passed."
-
-
-# the rule for making object files and test apps
-
-%.o: %.c
- $(COMPILE) -c $< -o $@
-
-%$(EXE): %.c ../test/getopt_s.c
- $(COMPILE) $(LDFLAGS) $< ../test/getopt_s.c -o $@ $(CRYPTOLIB) $(LIBS)
-
-all: $(testapp)
-
-# housekeeping functions
-
-clean:
- rm -f libcryptomodule.a
- rm -f $(testapp) *.o */*.o
- for a in * .* */*; do if [ -f "$$a~" ] ; then rm $$a~; fi; done;
- rm -f `find . -name "*.[ch]~*~"`
- rm -rf latex
-
-superclean: clean
- rm -f *core TAGS ktrace.out
-
-
-# the target 'package' builds a compressed tar archive of the source code
-
-distname = crypto-$(shell cat VERSION)
-
-package: superclean
- cd ..; tar cvzf $(distname).tgz crypto/
-
-
-# EOF
« no previous file with comments | « srtp/crypto/.cvsignore ('k') | srtp/crypto/VERSION » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698