diff options
author | Dr. Stephen Henson <steve@openssl.org> | 1999-04-24 19:28:43 +0200 |
---|---|---|
committer | Dr. Stephen Henson <steve@openssl.org> | 1999-04-24 19:28:43 +0200 |
commit | 73934800474e5b333af2bff0a8f79f13405fb500 (patch) | |
tree | 11883a1b42ba53c8192b5d5d809926f0f9c4f0a8 /rsaref | |
parent | "perl util/mkerr.pl -static -recurse -rebuild" because the previous (diff) | |
download | openssl-73934800474e5b333af2bff0a8f79f13405fb500.tar.xz openssl-73934800474e5b333af2bff0a8f79f13405fb500.zip |
Change the command line options of mkerr.pl so -static is now default and
a -write option is needed to actually change anything. Second attempt at
getting rid of ERR, ERRC definitions: it might even work this time :-)
Diffstat (limited to 'rsaref')
-rw-r--r-- | rsaref/Makefile.ssl | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/rsaref/Makefile.ssl b/rsaref/Makefile.ssl index a45b4939a6..6f0ef04ec4 100644 --- a/rsaref/Makefile.ssl +++ b/rsaref/Makefile.ssl @@ -15,14 +15,13 @@ AR= ar r CFLAGS= $(INCLUDES) $(CFLAG) -ERRC=rsar_err GENERAL=Makefile TEST= APPS= LIB=$(TOP)/libRSAglue.a -LIBSRC= rsaref.c $(ERRC).c -LIBOBJ= rsaref.o $(ERRC).o +LIBSRC= rsaref.c rsar_err.c +LIBOBJ= rsaref.o rsar_err.o SRC= $(LIBSRC) |