diff options
Diffstat (limited to 'tools/functions.make')
-rw-r--r-- | tools/functions.make | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/tools/functions.make b/tools/functions.make index d9acbba2ba..c2237c9547 100644 --- a/tools/functions.make +++ b/tools/functions.make | |||
@@ -14,12 +14,18 @@ | |||
14 | # | 14 | # |
15 | # The sed line is to prepend the directory to all source files | 15 | # The sed line is to prepend the directory to all source files |
16 | 16 | ||
17 | # This is needed because GNU Make older than 4.3 treats this as the start | ||
18 | # of a comment even within a $(shell) call and requires a backslash escape. | ||
19 | # Newer Makes pass the whole "\#" through, making the backslash visible in | ||
20 | # the shell. To safely pass a literal "#", it has to go in a variable. | ||
21 | _hash_ = \# | ||
22 | |||
17 | preprocess = $(shell $(CC) $(PPCFLAGS) $(2) -E -P -x c -include config.h $(1) | \ | 23 | preprocess = $(shell $(CC) $(PPCFLAGS) $(2) -E -P -x c -include config.h $(1) | \ |
18 | grep -v '^#' | grep -v "^ *$$" | \ | 24 | grep -v "^$(_hash_)" | grep -v "^ *$$" | \ |
19 | sed -e 's:^..*:$(dir $(1))&:') | 25 | sed -e 's:^..*:$(dir $(1))&:') |
20 | 26 | ||
21 | preprocess2file = $(shell $(CC) $(PPCFLAGS) $(3) -E -P -x c -include config.h $(1) | \ | 27 | preprocess2file = $(shell $(CC) $(PPCFLAGS) $(3) -E -P -x c -include config.h $(1) | \ |
22 | grep -v '^#' | grep -v "^$$" > $(2)) | 28 | grep -v '^$(_hash_)' | grep -v "^$$" > $(2)) |
23 | 29 | ||
24 | asmdefs2file = $(SILENT)$(CC) $(PPCFLAGS) $(3) -S -x c -o - -include config.h $(1) | \ | 30 | asmdefs2file = $(SILENT)$(CC) $(PPCFLAGS) $(3) -S -x c -o - -include config.h $(1) | \ |
25 | perl -ne 'if(/^_?AD_(\w+):$$/){$$var=$$1}else{/^\W\.(?:word|long)\W(.*)$$/ && $$var && print "\#define $$var $$1\n";$$var=0}' > $(2) | 31 | perl -ne 'if(/^_?AD_(\w+):$$/){$$var=$$1}else{/^\W\.(?:word|long)\W(.*)$$/ && $$var && print "\#define $$var $$1\n";$$var=0}' > $(2) |