summaryrefslogtreecommitdiff
path: root/3rdParty/sha1/Makefile.nt
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.nt
parent1c58fa7c64843b2655152aed48d0c3dcaa2e28c2 (diff)
downloadaCms-84c42bcc329a10325c846c6f46d580750bc39853.tar.gz
aCms-84c42bcc329a10325c846c6f46d580750bc39853.tar.bz2
replace sha1 with crypto++ SHA-256
Diffstat (limited to '3rdParty/sha1/Makefile.nt')
-rw-r--r--3rdParty/sha1/Makefile.nt48
1 files changed, 0 insertions, 48 deletions
diff --git a/3rdParty/sha1/Makefile.nt b/3rdParty/sha1/Makefile.nt
deleted file mode 100644
index 9bacf64..0000000
--- a/3rdParty/sha1/Makefile.nt
+++ /dev/null
@@ -1,48 +0,0 @@
-#
-# Makefile.nt
-#
-# Copyright (C) 1998, 2009
-# Paul E. Jones <paulej@packetizer.com>
-# All Rights Reserved.
-#
-#############################################################################
-# $Id: Makefile.nt 13 2009-06-22 20:20:32Z paulej $
-#############################################################################
-#
-# Description:
-# This is a makefile for Win32 to build the programs sha, shacmp, and
-# shatest
-#
-# Portability Issues:
-# Designed to work with Visual C++
-#
-#
-
-.silent:
-
-!include <win32.mak>
-
-RM = del /q
-
-LIBS = $(conlibs) setargv.obj
-
-CFLAGS = -D _CRT_SECURE_NO_WARNINGS /EHsc /O2 /W3
-
-OBJS = sha1.obj
-
-all: sha.exe shacmp.exe shatest.exe
-
-sha.exe: sha.obj $(OBJS)
- $(link) $(conflags) -out:$@ sha.obj $(OBJS) $(LIBS)
-
-shacmp.exe: shacmp.obj $(OBJS)
- $(link) $(conflags) -out:$@ shacmp.obj $(OBJS) $(LIBS)
-
-shatest.exe: shatest.obj $(OBJS)
- $(link) $(conflags) -out:$@ shatest.obj $(OBJS) $(LIBS)
-
-.cpp.obj:
- $(cc) $(CFLAGS) $(cflags) $(cvars) $<
-
-clean:
- $(RM) *.obj sha.exe shacmp.exe shatest.exe