Commit Diff


commit - b46c1e045aae963c26a2e4959236dcdd6c285813
commit + 3185a7443bd73f8c64258a4330f73aa0b0a9a976
blob - a4c900b7f50d8d643524becc373f46951d405243
blob + 5fd34708bd3654bc05060446ff5d55557747cfd3
--- gotweb/libexec/Makefile
+++ gotweb/libexec/Makefile
@@ -1,4 +1,4 @@
 SUBDIR = got-read-blob got-read-commit got-read-object got-read-tree \
-	got-read-tag got-read-pack got-read-gitconfig
+	got-read-tag got-read-pack got-read-gitconfig got-read-gotconfig
 
 .include <bsd.subdir.mk>
blob - /dev/null
blob + 29605918a07b9e1969e3a2722605c3424e77d13f (mode 644)
--- /dev/null
+++ gotweb/libexec/got-read-gotconfig/Makefile
@@ -0,0 +1,17 @@
+
+.include "../../../got-version.mk"
+.include "../Makefile.inc"
+
+PROG=		got-read-gotconfig
+SRCS=		got-read-gotconfig.c error.c inflate.c object_parse.c \
+		path.c privsep.c sha1.c parse.y
+
+CPPFLAGS = -I${.CURDIR}/../../../include -I${.CURDIR}/../../../lib \
+	-I${.CURDIR}/../../../libexec/got-read-gotconfig
+LDADD = -lutil -lz
+DPADD = ${LIBZ} ${LIBUTIL}
+LDSTATIC = ${STATIC}
+
+.PATH:	${.CURDIR}/../../../lib ${.CURDIR}/../../../libexec/got-read-gotconfig
+
+.include <bsd.prog.mk>