1
0
mirror of https://github.com/cc65/cc65.git synced 2024-12-27 00:29:31 +00:00

Added note on the necessity of tab chars at the beginning of make command lines.

git-svn-id: svn://svn.cc65.org/cc65/trunk@4325 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
ol.sc 2009-10-04 16:30:56 +00:00
parent ed15f337d9
commit ca5ada12ba

View File

@ -95,6 +95,10 @@ $(PROGRAM): $(SOURCES:.c=.o)
$(CC) $(LDFLAGS) $^ -o $@
</verb></tscreen>
<bf/Important:/ When using the sample Makefile above via copy & paste it is
necessary to replace the eight spaces at the beginning of command lines (lines
33, 36, 37 and 40) with a tab character (ASCII code 9).
<sect1>Invoking the sample Makefile<p>