diff options
| author | Simon Tatham <anakin@pobox.com> | 2009-12-17 17:55:42 +0000 |
|---|---|---|
| committer | Simon Tatham <anakin@pobox.com> | 2009-12-17 17:55:42 +0000 |
| commit | 84d48aa074803cea7933c69bc982404d7ff817a0 (patch) | |
| tree | 132b70b277ea21b311959e69edaf465b386fe16d | |
| parent | 525370a569c48d18135a7c2ed24208f780704d15 (diff) | |
| download | puzzles-84d48aa074803cea7933c69bc982404d7ff817a0.zip puzzles-84d48aa074803cea7933c69bc982404d7ff817a0.tar.gz puzzles-84d48aa074803cea7933c69bc982404d7ff817a0.tar.bz2 puzzles-84d48aa074803cea7933c69bc982404d7ff817a0.tar.xz | |
Patch from Frode Austvik to permit passing CFLAGS in to the Unix
makefile.
[originally from svn r8782]
| -rwxr-xr-x | mkfiles.pl | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1100,7 +1100,7 @@ if (defined $makefiles{'gtk'}) { "\n". "# You can define this path to point at your tools if you need to\n". "# TOOLPATH = /opt/gcc/bin\n". - "CC = \$(TOOLPATH)cc\n". + "CC := \$(TOOLPATH)\$(CC)\n". "# You can manually set this to `gtk-config' or `pkg-config gtk+-1.2'\n". "# (depending on what works on your system) if you want to enforce\n". "# building with GTK 1.2, or you can set it to `pkg-config gtk+-2.0'\n". @@ -1108,9 +1108,9 @@ if (defined $makefiles{'gtk'}) { "# to 1.2 if it isn't found.\n". "GTK_CONFIG = sh -c 'pkg-config gtk+-2.0 \$\$0 2>/dev/null || gtk-config \$\$0'\n". "\n". - &splitline("CFLAGS = -O2 -Wall -Werror -ansi -pedantic -g " . + &splitline("CFLAGS := -O2 -Wall -Werror -ansi -pedantic -g " . (join " ", map {"-I$dirpfx$_"} @srcdirs) . - " `\$(GTK_CONFIG) --cflags`")."\n". + " `\$(GTK_CONFIG) --cflags` \$(CFLAGS)")."\n". "XLDFLAGS = `\$(GTK_CONFIG) --libs`\n". "ULDFLAGS =#\n". "INSTALL=install\n", |