From a81a4ec40737452979fbf378c79a99a31662e857 Mon Sep 17 00:00:00 2001 From: Tom Willemsen Date: Sun, 26 Aug 2012 22:19:45 +0200 Subject: [PATCH] stumpwm: Use .lisp extension --- stumpwm/Makefile | 11 ++++++++--- stumpwm/{stumpwmrc => stumpwmrc.lisp} | 0 2 files changed, 8 insertions(+), 3 deletions(-) rename stumpwm/{stumpwmrc => stumpwmrc.lisp} (100%) diff --git a/stumpwm/Makefile b/stumpwm/Makefile index 98362a6..06c6d85 100644 --- a/stumpwm/Makefile +++ b/stumpwm/Makefile @@ -1,4 +1,9 @@ -.PHONY: all install +files = stumpwmrc.lisp +install-files = $(addprefix install-,$(files)) + +.PHONY: all install $(install-files) all: -install: stumpwmrc - install -Dm 444 $^ ${HOME}/.$^ +install: $(install-files) + +$(install-files): install-%.lisp: + install -Dm 444 $*.lisp ${HOME}/.$* diff --git a/stumpwm/stumpwmrc b/stumpwm/stumpwmrc.lisp similarity index 100% rename from stumpwm/stumpwmrc rename to stumpwm/stumpwmrc.lisp