diff options
author | --author=Satoshi Nakamoto <satoshin@gmx.com> | 2010-07-30 17:35:17 +0000 |
---|---|---|
committer | Gavin Andresen <gavinandresen@gmail.com> | 2010-07-30 17:35:17 +0000 |
commit | ec82517c8919f9cb7194511dc322a2575745e39e (patch) | |
tree | 102c6ae76c23e2e222848e3ba8ae14e524358d39 /makefile.mingw | |
parent | 31ffe954b6f415b724c3214de5bffd7bba5872c0 (diff) |
Fredrik Roubert: simplified makefile.unix with wx-config, misc
Diffstat (limited to 'makefile.mingw')
-rw-r--r-- | makefile.mingw | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/makefile.mingw b/makefile.mingw index 9140c23ec5..deb8df8112 100644 --- a/makefile.mingw +++ b/makefile.mingw @@ -54,7 +54,7 @@ obj/%.o: %.cpp $(HEADERS) g++ -c $(CFLAGS) -DGUI -o $@ $< cryptopp/obj/%.o: cryptopp/%.cpp - g++ -c $(CFLAGS) -O3 -DCRYPTOPP_X86_ASM_AVAILABLE -o $@ $< + g++ -c $(CFLAGS) -O3 -DCRYPTOPP_X86_ASM_AVAILABLE -DCRYPTOPP_DISABLE_SSE2 -o $@ $< obj/ui_res.o: ui.rc rc/bitcoin.ico rc/check.ico rc/send16.bmp rc/send16mask.bmp rc/send16masknoshadow.bmp rc/send20.bmp rc/send20mask.bmp rc/addressbook16.bmp rc/addressbook16mask.bmp rc/addressbook20.bmp rc/addressbook20mask.bmp windres $(DEFS) $(INCLUDEPATHS) -o $@ -i $< |