diff options
author | Richard Levitte <levitte@openssl.org> | 2016-04-02 18:36:52 +0200 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2016-04-20 16:04:56 +0200 |
commit | 45c6e23c978da0b23df5e5a9a3c2e631b79ba497 (patch) | |
tree | 886bf62d10c214c2ea08d62f7cf04dbc8348fbdf /demos | |
parent | Fix no-sock on Windows (diff) | |
download | openssl-45c6e23c978da0b23df5e5a9a3c2e631b79ba497.tar.xz openssl-45c6e23c978da0b23df5e5a9a3c2e631b79ba497.zip |
Remove --classic build entirely
The Unix build was the last to retain the classic build scheme. The
new unified scheme has matured enough, even though some details may
need polishing.
Reviewed-by: Rich Salz <rsalz@openssl.org>
Diffstat (limited to 'demos')
-rw-r--r-- | demos/bio/Makefile.in | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/demos/bio/Makefile.in b/demos/bio/Makefile.in deleted file mode 100644 index 04c5dc7e4e..0000000000 --- a/demos/bio/Makefile.in +++ /dev/null @@ -1,23 +0,0 @@ -CC=cc -CFLAGS= -g -I../../include -LIBS= -L../.. ../../libssl.a ../../libcrypto.a -ldl -EXAMPLES=saccept sconnect client-arg client-conf - -all: $(EXAMPLES) - -saccept: saccept.o - $(CC) -o saccept saccept.o $(LIBS) - -sconnect: sconnect.o - $(CC) -o sconnect sconnect.o $(LIBS) - -client-arg: client-arg.o - $(CC) -o client-arg client-arg.o $(LIBS) - -client-conf: client-conf.o - $(CC) -o client-conf client-conf.o $(LIBS) - -clean: - rm -f $(EXAMPLES) *.o - -# DO NOT DELETE THIS LINE -- make depend depends on it. |