aboutsummaryrefslogtreecommitdiff
path: root/src/makefile.mingw
diff options
context:
space:
mode:
authorGavin Andresen <[email protected]>2011-09-08 16:50:58 -0400
committerGavin Andresen <[email protected]>2011-12-01 12:18:50 -0500
commiteb5fff9e16b2c3e94835cd3a8897318472df2374 (patch)
tree783a1d81774279474627e74209f792bbe9af382a /src/makefile.mingw
parentMerge pull request #666 from nobled/secstrings (diff)
downloaddiscoin-eb5fff9e16b2c3e94835cd3a8897318472df2374.tar.xz
discoin-eb5fff9e16b2c3e94835cd3a8897318472df2374.zip
Moved checkpoints out of main, to prep for using them to help prevent DoS attacks
Diffstat (limited to 'src/makefile.mingw')
-rw-r--r--src/makefile.mingw2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/makefile.mingw b/src/makefile.mingw
index 95d09f877..2cb78d97e 100644
--- a/src/makefile.mingw
+++ b/src/makefile.mingw
@@ -29,6 +29,7 @@ CFLAGS=-mthreads -O2 -w -Wno-invalid-offsetof -Wformat $(DEBUGFLAGS) $(DEFS) $(I
HEADERS = \
base58.h \
bignum.h \
+ checkpoints.h \
crypter.h \
db.h \
headers.h \
@@ -58,6 +59,7 @@ endif
LIBS += -l kernel32 -l user32 -l gdi32 -l comdlg32 -l winspool -l winmm -l shell32 -l comctl32 -l ole32 -l oleaut32 -l uuid -l rpcrt4 -l advapi32 -l ws2_32 -l shlwapi
OBJS= \
+ obj/checkpoints.o \
obj/crypter.o \
obj/db.o \
obj/init.o \