diff options
| author | Gavin Andresen <[email protected]> | 2011-08-26 18:41:22 -0400 |
|---|---|---|
| committer | Gavin Andresen <[email protected]> | 2011-08-26 18:43:58 -0400 |
| commit | 829e21733b1c232c79c1a2d10598eb47b2f5f7f9 (patch) | |
| tree | 3eceddfc800a48afa6f4564d248742003eab3b33 /src/makefile.osx | |
| parent | Merge pull request #474 from xHire/master (diff) | |
| download | discoin-829e21733b1c232c79c1a2d10598eb47b2f5f7f9.tar.xz discoin-829e21733b1c232c79c1a2d10598eb47b2f5f7f9.zip | |
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 699911d4e..363a85fc7 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 |