diff options
author | Gavin Andresen <gavinandresen@gmail.com> | 2012-12-12 09:19:26 -0800 |
---|---|---|
committer | Gavin Andresen <gavinandresen@gmail.com> | 2012-12-12 09:19:26 -0800 |
commit | 095b06cfaee8eac0863a063b2f7007cfd214f8f7 (patch) | |
tree | 8a07e9820547682c0d998f5f8f8305e1cdc40022 | |
parent | a9e055a1cabc07fc43ef8e9e3b2fc0fbb41fd2ef (diff) | |
parent | 679131b235aca28bbe417b13fb0aacf6f4ff4dd8 (diff) |
Merge pull request #2073 from grimd34th/patch-3
Update src/makefile.mingw
-rw-r--r-- | src/makefile.mingw | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/makefile.mingw b/src/makefile.mingw index fd61d44709..22d65d6703 100644 --- a/src/makefile.mingw +++ b/src/makefile.mingw @@ -97,7 +97,7 @@ DEFS += $(addprefix -I,$(CURDIR)/leveldb/helpers) # TODO: If this fails, try adding a ranlib libleveldb.a && ranlib libmemenv.a leveldb/libleveldb.a: cd leveldb && $(MAKE) libleveldb.a libmemenv.a && cd .. -obj/leveldb.o: leveldb/libleveldb.lib +obj/leveldb.o: leveldb/libleveldb.a obj/%.o: %.cpp $(HEADERS) g++ -c $(CFLAGS) -o $@ $< |