diff options
author | Gavin Andresen <gavinandresen@gmail.com> | 2011-08-26 18:41:22 -0400 |
---|---|---|
committer | Gavin Andresen <gavinandresen@gmail.com> | 2011-08-26 18:43:58 -0400 |
commit | 829e21733b1c232c79c1a2d10598eb47b2f5f7f9 (patch) | |
tree | 3eceddfc800a48afa6f4564d248742003eab3b33 /src/makefile.osx | |
parent | 1224a14ae435ecc5bce41c5e8165f28ab75c6f2d (diff) |
CHECKMULTISIG unit tests.
Diffstat (limited to 'src/makefile.osx')
-rw-r--r-- | src/makefile.osx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/makefile.osx b/src/makefile.osx index 699911d4e6..363a85fc7b 100644 --- a/src/makefile.osx +++ b/src/makefile.osx @@ -76,8 +76,8 @@ obj/nogui/%.o: %.cpp $(HEADERS) bitcoind: $(OBJS:obj/%=obj/nogui/%) $(CXX) $(CFLAGS) -o $@ $(LIBPATHS) $^ $(LIBS) -obj/test/%.o: test/%.cpp $(HEADERS) - $(CXX) -c $(CFLAGS) -o $@ $< +obj/test/test_bitcoin.o: $(wildcard test/*.cpp) $(HEADERS) + $(CXX) -c $(CFLAGS) -o $@ test/test_bitcoin.cpp test_bitcoin: obj/test/test_bitcoin.o $(filter-out obj/nogui/init.o,$(OBJS:obj/%=obj/nogui/%)) $(CXX) $(CFLAGS) -o $@ $(LIBPATHS) $^ $(LIBS) -lboost_unit_test_framework |