9 lines
211 B
Makefile
9 lines
211 B
Makefile
files = stumpwmrc.lisp
|
|
install-files = $(addprefix install-,$(files))
|
|
|
|
.PHONY: all install $(install-files)
|
|
all:
|
|
install: $(install-files)
|
|
|
|
$(install-files): install-%.lisp:
|
|
install -Dm 444 $*.lisp ${HOME}/.$*
|