]> git.sur5r.net Git - cc65/blobdiff - doc/make.sgml
Added note on the necessity of tab chars at the beginning of make command lines.
[cc65] / doc / make.sgml
index b51e319a47c07aa9a6405d3eb12c17343ae52de2..078d7e97ca31f538114d6270d26eaf521fa102ba 100644 (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>