Added cl/khal-notify.lisp
This commit is contained in:
16
cl/Makefile
Normal file
16
cl/Makefile
Normal file
@ -0,0 +1,16 @@
|
||||
files := $(wildcard *.lisp)
|
||||
names := $(files:.lisp=)
|
||||
|
||||
.PHONY: all clean $(names)
|
||||
|
||||
all: $(names)
|
||||
|
||||
$(names): %: bin/%
|
||||
|
||||
bin/%: %.lisp build-binary.sh Makefile
|
||||
mkdir -p bin
|
||||
./build-binary.sh $<
|
||||
mv $(@F) bin/
|
||||
|
||||
clean:
|
||||
rm -rf bin man
|
Reference in New Issue
Block a user