diff options
author | Gavin Andresen <gavinandresen@gmail.com> | 2011-09-26 11:15:01 -0400 |
---|---|---|
committer | Gavin Andresen <gavinandresen@gmail.com> | 2011-09-26 11:15:01 -0400 |
commit | 81cadd74d28ce26d5fc726807eb24f06cf8dd768 (patch) | |
tree | 2817cb291b12985c58076cca56ca37ec5dcd8c89 /src/makefile.unix | |
parent | 565c4771b6eba0eeb82f8602735100bbcf4b053e (diff) |
Fix build: put back rules to build cryptopp files
Diffstat (limited to 'src/makefile.unix')
-rw-r--r-- | src/makefile.unix | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/makefile.unix b/src/makefile.unix index 88ca8895f1..689c54d9d2 100644 --- a/src/makefile.unix +++ b/src/makefile.unix @@ -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 $@ $< |