summary refs log tree commit diff
ModeNameSize
-rw-r--r--.gitignore44log plain blame
-rw-r--r--LICENSE35149log plain blame
-rw-r--r--Makefile2486log plain blame
-rw-r--r--README.74535log plain blame
-rw-r--r--buffer.c6221log plain blame
-rw-r--r--catgirl.118267log plain blame
-rw-r--r--chat.c12092log plain blame
-rw-r--r--chat.h10173log plain blame
-rw-r--r--command.c15721log plain blame
-rw-r--r--complete.c4792log plain blame
-rw-r--r--config.c3799log plain blame
-rwxr-xr-xconfigure1119log plain blame
-rw-r--r--edit.c7440log plain blame
-rw-r--r--filter.c3749log plain blame
-rw-r--r--handle.c38719log plain blame
-rw-r--r--irc.c7649log plain blame
-rw-r--r--log.c3368log plain blame
d---------scripts322log plain
-rw-r--r--ui.c30912log plain blame
-rw-r--r--url.c6946log plain blame
-rw-r--r--xdg.c3796log plain blame
9eb1aef28495773492cc5bec90&follow=1'>cgit.mk: Use SHELL_PATH_SQ to run gen-version.shJohn Keeping On some platforms (notably Solaris) /bin/sh doesn't support enough of POSIX for gen-version.sh to run. Git's Makefile provides SHELL_PATH_SQ to address this issue so we just have 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