summaryrefslogtreecommitdiffabout
Unidiff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--Makefile14
-rw-r--r--cgit.c9
2 files changed, 14 insertions, 9 deletions
diff --git a/Makefile b/Makefile
index 243f590..21e2eb3 100644
--- a/Makefile
+++ b/Makefile
@@ -1 +1,2 @@
1CGIT_VERSION = 0.1-pre
1 2
@@ -5,3 +6,3 @@ INSTALL_CSS = /var/www/htdocs/cgit.css
5EXTLIBS = ../git/libgit.a ../git/xdiff/lib.a -lz -lcrypto 6EXTLIBS = ../git/libgit.a ../git/xdiff/lib.a -lz -lcrypto
6OBJECTS = cgit.o config.o html.o cache.o 7OBJECTS = config.o html.o cache.o
7 8
@@ -15,8 +16,9 @@ install: all
15 16
16clean: 17cgit: cgit.c cgit.h git.h $(OBJECTS)
17 rm -f cgit *.o 18 $(CC) $(CFLAGS) -DCGIT_VERSION='"$(CGIT_VERSION)"' cgit.c -o cgit $(OBJECTS) $(EXTLIBS)
18
19cgit: $(OBJECTS)
20 $(CC) $(CFLAGS) -o cgit $(OBJECTS) $(EXTLIBS)
21 19
22$(OBJECTS): cgit.h git.h 20$(OBJECTS): cgit.h git.h
21
22.PHONY: clean
23clean:
24 rm -f cgit *.o
diff --git a/cgit.c b/cgit.c
index 808ffe9..110face 100644
--- a/cgit.c
+++ b/cgit.c
@@ -10,3 +10,5 @@
10 10
11static const char cgit_doctype[] = 11const char cgit_version[] = CGIT_VERSION;
12
13const char cgit_doctype[] =
12"<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n" 14"<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n"
@@ -14,6 +16,6 @@ static const char cgit_doctype[] =
14 16
15static const char cgit_error[] = 17const char cgit_error[] =
16"<div class='error'>%s</div>"; 18"<div class='error'>%s</div>";
17 19
18static const char cgit_lib_error[] = 20const char cgit_lib_error[] =
19"<div class='error'>%s: %s</div>"; 21"<div class='error'>%s: %s</div>";
@@ -202,2 +204,3 @@ static void cgit_print_docstart(char *title)
202 html("</title>\n"); 204 html("</title>\n");
205 htmlf("<meta name='generator' content='cgit v%s'/>\n", cgit_version);
203 html("<link rel='stylesheet' type='text/css' href='"); 206 html("<link rel='stylesheet' type='text/css' href='");