Replaced illegal tab in Makefile with spaces.
authorGustav Larsson <gustav.m.larsson@gmail.com>
Wed, 25 Feb 2015 05:22:15 +0000 (23:22 -0600)
committerGustav Larsson <gustav.m.larsson@gmail.com>
Wed, 25 Feb 2015 05:22:15 +0000 (23:22 -0600)
commitd2beb8ab20b55aebd25a2fb1f3eed3cf2923efaa
tree8b2b392009d5fac4f19caab573c593997fc3abb4
parent4a3887ab1791f7a0ea6d17cafb861f53398a42d5
Replaced illegal tab in Makefile with spaces.

Commands, such as $(error ...), are not allowed to be indented with tabs
outside of targets, throwing an error instead of outputting the actual
error. The solution is to use innocuous spaces instead. Ideally, spaces
should be used everywhere outside targets, but since make does not mind
it if variable assignments are tab-indented outside targets, a complete
overhaul is not necessary. However, if more errors are added, it might
make more sense to be consistent.

Also, make will already add a period so I removed it.
Makefile