Artifact [924382b7f2]

Artifact 924382b7f251a636e78b4e0a8abacedc8d9edd39:


     1
     2
     3
     4
     5
     6
     7
     8
     9
    10
    11
    12
    13
    14
    15
    16
    17
    18
WEBDIR = /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