Skip to content

Commit

Permalink
Makefile: Use git friendly rule format
Browse files Browse the repository at this point in the history
Add all rules to seperate lines to only track real changes in git commits
  • Loading branch information
mariux committed Aug 12, 2015
1 parent 33bb921 commit a002011
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit a002011

Please sign in to comment.