aboutsummaryrefslogtreecommitdiff
diff refs
from: back
to: back
| flip
diff options
context:
space:
mode:
-rw-r--r--Makefile4
-rw-r--r--cgit.c2
-rw-r--r--shared.c2
3 files changed, 3 insertions, 5 deletions
diff --git a/Makefile b/Makefile
index c9be8fa..faf7b98 100644
--- a/Makefile
+++ b/Makefile
@@ -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)
diff --git a/cgit.c b/cgit.c
index 3943a0f..b3dd119 100644
--- a/cgit.c
+++ b/cgit.c
@@ -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"))
diff --git a/shared.c b/shared.c
index 48002ac..cd60da5 100644
--- a/shared.c
+++ b/shared.c
@@ -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)