]> git.sur5r.net Git - cc65/commitdiff
Added note on the necessity of tab chars at the beginning of make command lines. V2.13.0
authorol.sc <ol.sc@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Sun, 4 Oct 2009 16:30:56 +0000 (16:30 +0000)
committerol.sc <ol.sc@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Sun, 4 Oct 2009 16:30:56 +0000 (16:30 +0000)
git-svn-id: svn://svn.cc65.org/cc65/trunk@4325 b7a2c559-68d2-44c3-8de9-860c34a00d81

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>