From 7a23fadbc60506c2f422b28e16a880d28cbe60a4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niels=20M=C3=B6ller?= <nisse@lysator.liu.se> Date: Sun, 16 Nov 1997 23:28:06 +0100 Subject: [PATCH] Mark sections depending on non-exportable files. Rev: src/modules/_Crypto/Makefile.in:1.15 Rev: src/modules/_Crypto/lib/Makefile.in:1.14 --- src/modules/_Crypto/Makefile.in | 8 +++++++- src/modules/_Crypto/lib/Makefile.in | 6 +++++- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/src/modules/_Crypto/Makefile.in b/src/modules/_Crypto/Makefile.in index 895557065a..ec5d46dd65 100644 --- a/src/modules/_Crypto/Makefile.in +++ b/src/modules/_Crypto/Makefile.in @@ -1,6 +1,12 @@ SRCDIR=@srcdir@ VPATH=@srcdir@:@srcdir@/../..:../.. -OBJS=crypto.o idea.o des.o cast.o rc4.o invert.o sha.o md5.o pipe.o cbc.o + +# BEGIN NATIONAL SECURITY +MASS_DESTRUCTION_OBJS = idea.o des.o cast.o rc4.o +# END NATIONAL SECURITY + +OBJS= $(MASS_DESTRUCTION_OBJS) crypto.o invert.o sha.o md5.o pipe.o cbc.o + MODULE_ARCHIVES=lib/algorithms.a MODULE_SUBDIRS=lib MODULE_LDFLAGS=@LDFLAGS@ diff --git a/src/modules/_Crypto/lib/Makefile.in b/src/modules/_Crypto/lib/Makefile.in index f3750edd95..6c519f7bad 100644 --- a/src/modules/_Crypto/lib/Makefile.in +++ b/src/modules/_Crypto/lib/Makefile.in @@ -137,7 +137,11 @@ desQuickCore.c: ### End of rules for desCore -OBJS = idea.o sha.o md5.o rc4.o cast.o $(O) +# BEGIN NATIONAL SECURITY +MASS_DESTRUCTION_OBJS = idea.o rc4.o cast.o $(O) +# END NATIONAL SECURITY + +OBJS = $(MASS_DESTRUCTION_OBJS) sha.o md5.o algorithms.a: $(OBJS) rm -f algorithms.a -- GitLab