diff options
author | Pieter Wuille <pieter.wuille@gmail.com> | 2012-04-10 13:31:12 -0700 |
---|---|---|
committer | Pieter Wuille <pieter.wuille@gmail.com> | 2012-04-10 13:31:12 -0700 |
commit | 702764f53b6aded29fc2e020078d192ec2b13d68 (patch) | |
tree | 3c532113e13e79b5a0677fd5f8080766ea96ae23 /src/makefile.osx | |
parent | b56772e5df75832b84efacba60bbb3e7910fa1cf (diff) | |
parent | a20c0d0f6792acf532309eee2e9f29120c801ee4 (diff) |
Merge pull request #1054 from sipa/buildinfo
Build identification strings
Diffstat (limited to 'src/makefile.osx')
-rw-r--r-- | src/makefile.osx | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/src/makefile.osx b/src/makefile.osx index ed35b33ecb..439d8ef21b 100644 --- a/src/makefile.osx +++ b/src/makefile.osx @@ -65,6 +65,7 @@ CFLAGS += -Wextra -Wno-sign-compare -Wno-char-subscripts -Wno-invalid-offsetof - $(DEBUGFLAGS) $(DEFS) $(INCLUDEPATHS) OBJS= \ + obj/version.o \ obj/checkpoints.o \ obj/netbase.o \ obj/addrman.o \ @@ -99,6 +100,10 @@ all: bitcoind -include obj/*.P -include obj-test/*.P +build.h: FORCE + @../share/genbuild.sh build.h +DEFS += -DHAVE_BUILD_INFO + obj/%.o: %.cpp $(CXX) -c $(CFLAGS) -MMD -o $@ $< @cp $(@:%.o=%.d) $(@:%.o=%.P); \ @@ -106,7 +111,7 @@ obj/%.o: %.cpp -e '/^$$/ d' -e 's/$$/ :/' < $(@:%.o=%.d) >> $(@:%.o=%.P); \ rm -f $(@:%.o=%.d) -bitcoind: $(OBJS:obj/%=obj/%) +bitcoind: build.h $(OBJS:obj/%=obj/%) $(CXX) $(CFLAGS) -o $@ $(LIBPATHS) $^ $(LIBS) TESTOBJS := $(patsubst test/%.cpp,obj-test/%.o,$(wildcard test/*.cpp)) @@ -127,3 +132,6 @@ clean: -rm -f obj-test/*.o -rm -f obj/*.P -rm -f obj-test/*.P + -rm -f src/build.h + +FORCE: |