diff options
author | Lars Hjemli | 2006-12-11 16:38:30 +0100 |
---|---|---|
committer | Lars Hjemli | 2006-12-11 16:38:30 +0100 |
commit | 5a106eb09b9b5e189b96cc736046a92b054f6c7f (patch) | |
tree | 7172123df870c07deb882a4993fa991b31fc9008 /Makefile | |
parent | Rename config.c to parsing.c + move cgit_parse_query from cgit.c to parsing.c (diff) | |
download | cgit-5a106eb09b9b5e189b96cc736046a92b054f6c7f.tar.gz cgit-5a106eb09b9b5e189b96cc736046a92b054f6c7f.zip |
Move common output-functions into ui-shared.c
While at it, replace the cgit_[lib_]error constants with a proper function Signed-off-by: Lars Hjemli <hjemli@gmail.com>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile index eab7926..a4291f7 100644 --- a/Makefile +++ b/Makefile | |||
@@ -5,7 +5,7 @@ INSTALL_CSS = /var/www/htdocs/cgit.css | |||
5 | CACHE_ROOT = /var/cache/cgit | 5 | CACHE_ROOT = /var/cache/cgit |
6 | 6 | ||
7 | EXTLIBS = ../git/libgit.a ../git/xdiff/lib.a -lz -lcrypto | 7 | EXTLIBS = ../git/libgit.a ../git/xdiff/lib.a -lz -lcrypto |
8 | OBJECTS = parsing.o html.o cache.o | 8 | OBJECTS = parsing.o html.o cache.o ui-shared.o |
9 | 9 | ||
10 | CFLAGS += -Wall | 10 | CFLAGS += -Wall |
11 | 11 | ||