From b6f22d332ba140df46b47c844aec8df5e00110bf Mon Sep 17 00:00:00 2001 From: Christian Groessler Date: Thu, 21 Feb 2019 13:45:51 +0100 Subject: [PATCH] un-remove TABs in doc/using-make.sgml --- doc/using-make.sgml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/doc/using-make.sgml b/doc/using-make.sgml index 2758a340b..e324b7484 100644 --- a/doc/using-make.sgml +++ b/doc/using-make.sgml @@ -76,18 +76,18 @@ ifneq ($(MAKECMDGOALS),clean) endif %.o: %.c - $(CC) -c $(CFLAGS) -o $@ $< + $(CC) -c $(CFLAGS) -o $@ $< $(PROGRAM): $(SOURCES:.c=.o) - $(CC) $(LDFLAGS) -o $@ $^ + $(CC) $(LDFLAGS) -o $@ $^ clean: - $(RM) $(SOURCES:.c=.o) $(SOURCES:.c=.d) $(PROGRAM) $(PROGRAM).map + $(RM) $(SOURCES:.c=.o) $(SOURCES:.c=.d) $(PROGRAM) $(PROGRAM).map Invoking the sample Makefile

@@ -119,7 +119,7 @@ The recommended way to use GNU Make on Windows is to install it as part of a Cygwin environment. For more information see the Cygwin home page: - + If however installing Cygwin shouldn't be an option for one or the other reason then the sample Makefile may be invoked from the Windows Command Prompt (cmd.exe) by downloading the following programs: @@ -132,17 +132,17 @@ by downloading the following programs: Target-specific Variable Values

- + The very limited resources of the cc65 target machines now and then require manual optimization of the build process by compiling individual source files with different compiler options. GNU Make offers -perfectly suited for doing so. For example placing the code of the two modules +perfectly suited for doing so. For example placing the code of the two modules foo.o bar.o: CFLAGS += --code-name FOOBAR - + -- 2.39.5