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>
这个提交包含在:
父节点
df90b51baf
当前提交
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"))
|
||||||
|
正在加载...
在新工单中引用
屏蔽一个用户