]> Git Repo - VerusCoin.git/commitdiff
Fix build: put back rules to build cryptopp files
authorGavin Andresen <[email protected]>
Mon, 26 Sep 2011 15:15:01 +0000 (11:15 -0400)
committerGavin Andresen <[email protected]>
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 9c3c2355822362617caee3a47d696c0a4a08ad20..8b3df66d982d0eb5ab22892a0e7100ff714ea911 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 87225761bad3fd9c575e4f64871e32284ff9991b..d1c6ba8befc289e3aa1532e6bc40a8f6facd55aa 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 aff1e5f31d988b30bda4935114812211b1bda381..1d1d6b7b7bf7a67922acfe099a7d8d3e99a5a62d 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 88ca8895f1cdc09c52f72cdb8be7db6811ea1abd..689c54d9d20cdbc5dfe4feb5327cf80542187bcb 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 $@ $<
 
This page took 0.030132 seconds and 4 git commands to generate.