chiark / gitweb /
xbiffs refresh more often.
[ian-dotfiles.git] / misc / Makefile
1 INSTALLDIR=     $(HOME)/bin
2
3 TARGETS=        with-lock-ex close3onwards
4
5 CPPFLAGS=       $(OPTIONS)
6 CFLAGS=         $(OPTIMISE)
7 OPTIMISE=       -O2
8 OPTIONS=
9
10 default:        $(TARGETS)
11
12 install:
13                 set -e; for f in $(TARGETS); do \
14                         rm -f $(INSTALLDIR)/$$f; \
15                         ln $$f $(INSTALLDIR)/$$f; \
16                 done