about summary refs log tree commit diff
ModeNameSize
-rw-r--r--.gitignore61log plain blame
-rw-r--r--COPYING18009log plain blame
-rw-r--r--Makefile666log plain blame
-rw-r--r--README1494log plain blame
-rw-r--r--cache.c2551log plain blame
-rw-r--r--cgit.c3798log plain blame
-rw-r--r--cgit.css1827log plain blame
-rw-r--r--cgit.h3031log plain blame
-rw-r--r--git.h9722log plain blame
-rw-r--r--html.c1687log plain blame
-rw-r--r--parsing.c2855log plain blame
-rw-r--r--shared.c2725log plain blame
-rw-r--r--ui-commit.c1786log plain blame
-rw-r--r--ui-log.c2166log plain blame
-rw-r--r--ui-repolist.c1367log plain blame
-rw-r--r--ui-shared.c2609log plain blame
-rw-r--r--ui-summary.c1606log plain blame
-rw-r--r--ui-tree.c1696log plain blame
-rw-r--r--ui-view.c904log plain blame
e to use it. Signed-off-by: John Keeping <john@keeping.me.uk> 2013-03-20cgit.mk: don't rebuild everything if CGIT_VERSION changesJohn Keeping If CGIT_VERSION is in CGIT_CFLAGS then a change in version (for example because you have committed your changes) causes all of the CGit objects to be rebuilt. Avoid this by using EXTRA_CPPFLAGS to add the version for only those files that are affected and make them depend on VERSION. Signed-off-by: John Keeping <john@keeping.me.uk> 2013-03-20ui-patch: use cgit_version not CGIT_VERSIONJohn Keeping We already have a global cgit_version which is set from the #define'd CGIT_VERSION in cgit.c. Change ui-patch.c to use this so that we only need to rebuild cgit.o when the version changes. Signed-off-by: John Keeping <john@keeping.me.uk> 2013-03-20Makefile: re-use Git's Makefile where possibleJohn Keeping