Artifact 924382b7f251a636e78b4e0a8abacedc8d9edd39:
- File Makefile — part of check-in [a6e86beca9] at 2016-01-03 04:23:55 on branch crystal — Added version of hashcache written in Crystal (user: rkeene size: 350)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18WEBDIR = /web/customers/hashcache.rkeene.org all: hashcache hashcache: hashcache.cr crystal build --release --link-flags '-static' -o hashcache hashcache.cr strip hashcache install: cp hashcache "$(WEBDIR)/index.cgi" cp htaccess "$(WEBDIR)/.htaccess" clean: rm -f hashcache hashcache.o distclean: clean .PHONY: all install clean distclean