git » croncal.git » master » tree

[master] / Makefile

SOURCES := $(shell find src/ -name '*.lisp')

all: croncal

croncal: croncal.asd build.lisp $(SOURCES)
	ecl --load build.lisp

clean:
	rm -f croncal

.PHONY: clean