summaryrefslogtreecommitdiff
path: root/3rdParty/sha1/Makefile
diff options
context:
space:
mode:
authorAndreas Baumann <mail@andreasbaumann.cc>2015-05-01 19:31:32 +0200
committerAndreas Baumann <mail@andreasbaumann.cc>2015-05-01 19:31:32 +0200
commit84c42bcc329a10325c846c6f46d580750bc39853 (patch)
tree27c5f2432ecda8a9de30319390ba38a9a78715d3 /3rdParty/sha1/Makefile
parent1c58fa7c64843b2655152aed48d0c3dcaa2e28c2 (diff)
downloadaCms-84c42bcc329a10325c846c6f46d580750bc39853.tar.gz
aCms-84c42bcc329a10325c846c6f46d580750bc39853.tar.bz2
replace sha1 with crypto++ SHA-256
Diffstat (limited to '3rdParty/sha1/Makefile')
-rw-r--r--3rdParty/sha1/Makefile41
1 files changed, 0 insertions, 41 deletions
diff --git a/3rdParty/sha1/Makefile b/3rdParty/sha1/Makefile
deleted file mode 100644
index 66aaf2b..0000000
--- a/3rdParty/sha1/Makefile
+++ /dev/null
@@ -1,41 +0,0 @@
-#
-# Makefile
-#
-# Copyright (C) 1998, 2009
-# Paul E. Jones <paulej@packetizer.com>
-# All Rights Reserved.
-#
-#############################################################################
-# $Id: Makefile 12 2009-06-22 19:34:25Z paulej $
-#############################################################################
-#
-# Description:
-# This is a makefile for UNIX to build the programs sha, shacmp, and
-# shatest
-#
-#
-
-CC = g++
-
-CFLAGS = -c -O2 -Wall -D_FILE_OFFSET_BITS=64
-
-LIBS =
-
-OBJS = sha1.o
-
-all: sha shacmp shatest
-
-sha: sha.o $(OBJS)
- $(CC) -o $@ sha.o $(OBJS) $(LIBS)
-
-shacmp: shacmp.o $(OBJS)
- $(CC) -o $@ shacmp.o $(OBJS) $(LIBS)
-
-shatest: shatest.o $(OBJS)
- $(CC) -o $@ shatest.o $(OBJS) $(LIBS)
-
-%.o: %.cpp
- $(CC) $(CFLAGS) -o $@ $<
-
-clean:
- $(RM) *.o sha shacmp shatest