summaryrefslogtreecommitdiff
path: root/tools/makesrc.inc
diff options
context:
space:
mode:
Diffstat (limited to 'tools/makesrc.inc')
-rw-r--r--tools/makesrc.inc14
1 files changed, 14 insertions, 0 deletions
diff --git a/tools/makesrc.inc b/tools/makesrc.inc
new file mode 100644
index 0000000000..1499dadc94
--- /dev/null
+++ b/tools/makesrc.inc
@@ -0,0 +1,14 @@
1# -*- Makefile -*-
2
3# return the list of sources to build in the SRC variable
4
5# This uses the native 'gcc' compiler and not $(CC) since we use the -include
6# option and older gcc compiler doesn't have that. We use one such older
7# compiler for the win32 cross-compiles on Linux.
8#
9# The weird grep -v thing in here is due to Apple's stupidities and is needed
10# to make this do right when used on Mac OS X.
11
12SRC := $(shell cat SOURCES | gcc -DMEMORYSIZE=$(MEMORYSIZE) $(INCLUDES) \
13$(TARGET) $(DEFINES) $(EXTRA_DEFINES) -E -P -include "config.h" - | \
14grep -v "^\#")