Move cgit_version from shared.c to cgit.c
With the matching Makefile change, this makes sure that only cgit.o and cgit proper needs to be rebuildt when VERSION has been modified. Signed-off-by: Lars Hjemli <hjemli@gmail.com>
This commit is contained in:
parent
df90b51baf
commit
92908af455
4
Makefile
4
Makefile
@ -66,7 +66,9 @@ CFLAGS += -DCGIT_CACHE_ROOT='"$(CACHE_ROOT)"'
|
|||||||
cgit: $(OBJECTS)
|
cgit: $(OBJECTS)
|
||||||
$(CC) $(CFLAGS) -o cgit $(OBJECTS) $(EXTLIBS)
|
$(CC) $(CFLAGS) -o cgit $(OBJECTS) $(EXTLIBS)
|
||||||
|
|
||||||
$(OBJECTS): git/xdiff/lib.a git/libgit.a VERSION
|
$(OBJECTS): git/xdiff/lib.a git/libgit.a
|
||||||
|
|
||||||
|
cgit.o: VERSION
|
||||||
|
|
||||||
-include $(OBJECTS:.o=.d)
|
-include $(OBJECTS:.o=.d)
|
||||||
|
|
||||||
|
2
cgit.c
2
cgit.c
@ -10,6 +10,8 @@
|
|||||||
#include "cmd.h"
|
#include "cmd.h"
|
||||||
#include "ui-shared.h"
|
#include "ui-shared.h"
|
||||||
|
|
||||||
|
const char *cgit_version = CGIT_VERSION;
|
||||||
|
|
||||||
void config_cb(const char *name, const char *value)
|
void config_cb(const char *name, const char *value)
|
||||||
{
|
{
|
||||||
if (!strcmp(name, "root-title"))
|
if (!strcmp(name, "root-title"))
|
||||||
|
2
shared.c
2
shared.c
@ -12,8 +12,6 @@ struct cgit_repolist cgit_repolist;
|
|||||||
struct cgit_context ctx;
|
struct cgit_context ctx;
|
||||||
int cgit_cmd;
|
int cgit_cmd;
|
||||||
|
|
||||||
const char *cgit_version = CGIT_VERSION;
|
|
||||||
|
|
||||||
int chk_zero(int result, char *msg)
|
int chk_zero(int result, char *msg)
|
||||||
{
|
{
|
||||||
if (result != 0)
|
if (result != 0)
|
||||||
|
Loading…
Reference in New Issue
Block a user