# HG changeset patch # User Oleksandr Gavenko # Date 1295207659 -7200 # Node ID 14583eae4848d45c7a19ba7619508d612af07466 # Parent 3996f4df091591a35d439da19bc230f033157d57 Added standard Makefile settings. diff -r 3996f4df0915 -r 14583eae4848 Makefile --- a/Makefile Fri Jan 14 12:25:45 2011 +0200 +++ b/Makefile Sun Jan 16 21:54:19 2011 +0200 @@ -2,6 +2,17 @@ # # You can do anything with this file without any warranty. +SHELL = /bin/sh + +# Disable built in pattern rules. +MAKEFLAGS += -r +# Disable built in variables. +MAKEFLAGS += -R +# Disable built in suffix rules. +.SUFFIXES: +# Default target. +.DEFAULT_GOAL = all + ################################################################ # Helper definition.