diff options
author | Junio C Hamano <gitster@pobox.com> | 2007-06-13 01:28:21 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2007-06-13 02:02:10 -0700 |
commit | 334d28ae606c2d007803594cfc20d9e7997c0543 (patch) | |
tree | 6fde7278d37e1b26af83c228f541310b76737c50 /Makefile | |
parent | 48dd1da8e190c435de692c0cfff5a8f6eacedbe5 (diff) | |
download | git-334d28ae606c2d007803594cfc20d9e7997c0543.tar.gz git-334d28ae606c2d007803594cfc20d9e7997c0543.tar.xz |
Makefile: allow generating git.o for debugging purposes
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -735,9 +735,13 @@ gitk-wish: gitk GIT-GUI-VARS chmod +x $@+ && \ mv -f $@+ $@ -git$X: git.c common-cmds.h $(BUILTIN_OBJS) $(GITLIBS) GIT-CFLAGS +git.o: git.c common-cmds.h GIT-CFLAGS + $(QUIET_CC)$(CC) -DGIT_VERSION='"$(GIT_VERSION)"' \ + $(ALL_CFLAGS) -c $(filter %.c,$^) + +git$X: git.o $(BUILTIN_OBJS) $(GITLIBS) $(QUIET_LINK)$(CC) -DGIT_VERSION='"$(GIT_VERSION)"' \ - $(ALL_CFLAGS) -o $@ $(filter %.c,$^) \ + $(ALL_CFLAGS) -o $@ $(filter %.c,$^) git.o \ $(BUILTIN_OBJS) $(ALL_LDFLAGS) $(LIBS) help.o: common-cmds.h |