diff options
author | Lars Hjemli <hjemli@gmail.com> | 2006-12-11 17:25:41 +0100 |
---|---|---|
committer | Lars Hjemli <hjemli@gmail.com> | 2006-12-11 17:25:51 +0100 |
commit | 44923f8953c66dc9b852316b655ab3b5aec9478e (patch) | |
tree | e129ec8db3f8ffcf7f82f94052f430e576a9714c /Makefile | |
parent | Move functions for generic object output into ui-view.c (diff) | |
download | cgit-pink-44923f8953c66dc9b852316b655ab3b5aec9478e.tar.gz cgit-pink-44923f8953c66dc9b852316b655ab3b5aec9478e.zip |
Move global variables + callback functions into shared.c
Signed-off-by: Lars Hjemli <hjemli@gmail.com>
Diffstat (limited to '')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile index 4e532d0..c029637 100644 --- a/Makefile +++ b/Makefile @@ -5,8 +5,8 @@ INSTALL_CSS = /var/www/htdocs/cgit.css CACHE_ROOT = /var/cache/cgit EXTLIBS = ../git/libgit.a ../git/xdiff/lib.a -lz -lcrypto -OBJECTS = cache.o parsing.o html.o ui-shared.o ui-repolist.o ui-summary.o \ - ui-log.o ui-view.c +OBJECTS = shared.o cache.o parsing.o html.o ui-shared.o ui-repolist.o \ + ui-summary.o ui-log.o ui-view.c CFLAGS += -Wall |