From a00201165f0d179929718563b9721fe90ea2581d Mon Sep 17 00:00:00 2001 From: Marius Tolzmann Date: Wed, 12 Aug 2015 18:11:32 +0200 Subject: [PATCH] Makefile: Use git friendly rule format Add all rules to seperate lines to only track real changes in git commits --- Makefile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index eac2465..1c211fc 100644 --- a/Makefile +++ b/Makefile @@ -449,9 +449,11 @@ clean: CLEAN += mxqsub.1 ######################################################################## -build: web/pages/mxq/mxq web/lighttpd.conf +build: web/pages/mxq/mxq +build: web/lighttpd.conf -clean: CLEAN += web/pages/mxq/mxq web/lighttpd.conf +clean: CLEAN += web/pages/mxq/mxq +clean: CLEAN += web/lighttpd.conf install:: web/pages/mxq/mxq $(call quiet-install,0755,$^,${DESTDIR}${CGIDIR}/mxq)