Fix build: put back rules to build cryptopp files
authorGavin Andresen <gavinandresen@gmail.com>
Mon, 26 Sep 2011 15:15:01 +0000 (11:15 -0400)
committerGavin Andresen <gavinandresen@gmail.com>
Mon, 26 Sep 2011 15:15:01 +0000 (11:15 -0400)
src/makefile.linux-mingw
src/makefile.mingw
src/makefile.osx
src/makefile.unix

index 9c3c235..8b3df66 100644 (file)
@@ -78,6 +78,8 @@ OBJS= \
 
 all: bitcoind.exe
 
+cryptopp/obj/%.o: cryptopp/%.cpp
+       i586-mingw32msvc-g++ -c $(CFLAGS) -O3 -DCRYPTOPP_DISABLE_ASM -o $@ $<
 
 obj/nogui/%.o: %.cpp $(HEADERS)
        i586-mingw32msvc-g++ -c $(CFLAGS) -o $@ $<
index 8722576..d1c6ba8 100644 (file)
@@ -76,6 +76,8 @@ OBJS= \
 
 all: bitcoind.exe
 
+cryptopp/obj/%.o: cryptopp/%.cpp
+       g++ -c $(CFLAGS) -O3 -DCRYPTOPP_DISABLE_ASM -o $@ $<
 
 obj/nogui/%.o: %.cpp $(HEADERS)
        g++ -c $(CFLAGS) -o $@ $<
index aff1e5f..1d1d6b7 100644 (file)
@@ -76,6 +76,8 @@ endif
 
 all: bitcoind
 
+cryptopp/obj/%.o: cryptopp/%.cpp
+       $(CXX) -c $(CFLAGS) -O3 -DCRYPTOPP_DISABLE_ASM -o $@ $<
 
 obj/nogui/%.o: %.cpp $(HEADERS)
        $(CXX) -c $(CFLAGS) -o $@ $<
index 88ca889..689c54d 100644 (file)
@@ -104,6 +104,9 @@ OBJS= \
 all: bitcoind
 
 
+cryptopp/obj/%.o: cryptopp/%.cpp
+       $(CXX) -c $(CFLAGS) -O3 -o $@ $<
+
 obj/nogui/%.o: %.cpp $(HEADERS)
        $(CXX) -c $(CXXFLAGS) -o $@ $<