diff options
author | Dubiousjim <dubiousjim@gmail.com> | 2013-07-17 10:09:35 -0400 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2013-07-19 14:12:05 +0000 |
commit | c35fd1190f24cb2021441714148ce9385761325e (patch) | |
tree | 93377c634162b31452e0c01bfcf9ea5a077dbcb5 /Makefile | |
parent | 20fc1784804c1c7b4f97cb9ea8b9347e250c3e74 (diff) | |
download | alpine-conf-c35fd1190f24cb2021441714148ce9385761325e.zip |
Makefile: convert old-style suffix rules
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -53,10 +53,10 @@ SED_REPLACE := -e 's:@VERSION@:$(FULL_VERSION):g' \ -e 's:@sysconfdir@:$(sysconfdir):g' .SUFFIXES: .sh.in .in -.sh.in.sh: +%.sh: %.sh.in ${SED} ${SED_REPLACE} ${SED_EXTRA} $< > $@ -.in: +%: %.in ${SED} ${SED_REPLACE} ${SED_EXTRA} $< > $@ .PHONY: all apk clean install uninstall |