27
Content-Disposition: inline; filename="
3ad
Last-Modified: Mon, 04 May 2026 01:20:56 GMT
Expires: Thu, 01 May 2036 01:20:56 GMT
ETag: "b1c3a4ee82a540143d330eab3738ea9226700813"

CGIT_VERSION = 0.2

prefix = /var/www/htdocs/cgit
gitsrc = ../git

CACHE_ROOT = /var/cache/cgit
EXTLIBS = $(gitsrc)/libgit.a $(gitsrc)/xdiff/lib.a -lz -lcrypto
OBJECTS = shared.o cache.o parsing.o html.o ui-shared.o ui-repolist.o \
	ui-summary.o ui-log.o ui-view.c ui-tree.c ui-commit.c ui-diff.o \
	ui-snapshot.o

CFLAGS += -Wall

ifdef DEBUG
	CFLAGS += -g
endif

all: cgit

install: all clean-cache
	mkdir -p $(prefix)
	install cgit $(prefix)/cgit.cgi
	install cgit.css $(prefix)/cgit.css

cgit: cgit.c cgit.h git.h $(OBJECTS) $(gitsrc)/libgit.a
	$(CC) $(CFLAGS) -DCGIT_VERSION='"$(CGIT_VERSION)"' cgit.c -o cgit \
		$(OBJECTS) $(EXTLIBS)

$(OBJECTS): cgit.h git.h

ui-diff.o: xdiff.h

$(gitsrc)/libgit.a:
	$(MAKE) -C $(gitsrc)


.PHONY: clean
clean:
	rm -f cgit *.o

clean-cache:
	rm -rf $(CACHE_ROOT)/*

0

HTTP/1.0 500 Internal Server Error
Date: Mon, 04 May 2026 01:20:57 GMT
Server: OpenBSD httpd
Connection: close
Content-Type: text/html
Content-Length: 518

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>500 Internal Server Error</title>
<style type="text/css"><!--
body { background-color: white; color: black; font-family: 'Comic Sans MS', 'Chalkboard SE', 'Comic Neue', sans-serif; }
hr { border: 0; border-bottom: 1px dashed; }
@media (prefers-color-scheme: dark) {
body { background-color: #1E1F21; color: #EEEFF1; }
a { color: #BAD7FF; }
}
--></style>
</head>
<body>
<h1>500 Internal Server Error</h1>
<hr>
<address>OpenBSD httpd</address>
</body>
</html>
