| -rw-r--r-- | Makefile | 4 | ||||
| -rw-r--r-- | cgit.c | 2 | ||||
| -rw-r--r-- | shared.c | 2 |
3 files changed, 3 insertions, 5 deletions
@@ -66,9 +66,7 @@ CFLAGS += -DCGIT_CACHE_ROOT='"$(CACHE_ROOT)"' cgit: $(OBJECTS) $(CC) $(CFLAGS) -o cgit $(OBJECTS) $(EXTLIBS) -$(OBJECTS): git/xdiff/lib.a git/libgit.a - -cgit.o: VERSION +$(OBJECTS): git/xdiff/lib.a git/libgit.a VERSION -include $(OBJECTS:.o=.d) @@ -10,8 +10,6 @@ #include "cmd.h" #include "ui-shared.h" -const char *cgit_version = CGIT_VERSION; - void config_cb(const char *name, const char *value) { if (!strcmp(name, "root-title")) @@ -12,6 +12,8 @@ struct cgit_repolist cgit_repolist; struct cgit_context ctx; int cgit_cmd; +const char *cgit_version = CGIT_VERSION; + int chk_zero(int result, char *msg) { if (result != 0) |