diff options
| author | Simon Tatham <anakin@pobox.com> | 2005-01-24 12:05:21 +0000 |
|---|---|---|
| committer | Simon Tatham <anakin@pobox.com> | 2005-01-24 12:05:21 +0000 |
| commit | 2040ff96317be6b93ca459c44bfea5d775a18692 (patch) | |
| tree | 7f8d186b326a0dc6ec06d0f47fce1db8da49c8fc /mkfiles.pl | |
| parent | d8eb0de7c2210070adcf085e968658cbd00958d6 (diff) | |
| download | puzzles-2040ff96317be6b93ca459c44bfea5d775a18692.zip puzzles-2040ff96317be6b93ca459c44bfea5d775a18692.tar.gz puzzles-2040ff96317be6b93ca459c44bfea5d775a18692.tar.bz2 puzzles-2040ff96317be6b93ca459c44bfea5d775a18692.tar.xz | |
First cut at online help under OS X. I just built the HTML version
of the manual using Halibut (with one additional magic tag in the
<HEAD> section), stuck it in the right part of the application
bundle, referenced it in Info.plist, and added a Help menu.
Everything else was automatic. Not bad!
[originally from svn r5190]
Diffstat (limited to 'mkfiles.pl')
| -rwxr-xr-x | mkfiles.pl | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -1131,6 +1131,9 @@ if (defined $makefiles{'osx'}) { &splitline("CFLAGS = -O2 -Wall -Werror -g -DMAC_OS_X " . (join " ", map {"-I$dirpfx$_"} @srcdirs))."\n". "LDFLAGS = -framework Cocoa\n". + &splitline("all:" . join "", map { " $_" } &progrealnames("MX")) . + "\n" . + $makefile_extra{'osx'} . "\n". ".SUFFIXES: .o .c .m\n". "\n". @@ -1139,7 +1142,6 @@ if (defined $makefiles{'osx'}) { ".m.o:\n". "\t\$(CC) -x objective-c \$(COMPAT) \$(FWHACK) \$(XFLAGS) \$(CFLAGS) -c \$<\n". "\n"; - print &splitline("all:" . join "", map { " $_" } &progrealnames("MX")); print "\n\n"; foreach $p (&prognames("MX")) { ($prog, $type) = split ",", $p; @@ -1159,6 +1161,7 @@ if (defined $makefiles{'osx'}) { print "${prog}.app/Contents/Info.plist: ${prog}.app/Contents/Resources $infoplist\n\tcp $infoplist \$\@\n"; $targets .= " ${prog}.app/Contents/Info.plist"; } + $targets .= " \$(${prog}_extra)"; print &splitline("${prog}: $targets", 69) . "\n\n"; print &splitline("${prog}.app/Contents/MacOS/$prog: ". "${prog}.app/Contents/MacOS " . $objstr), "\n"; @@ -1170,8 +1173,6 @@ if (defined $makefiles{'osx'}) { print &splitline(sprintf("%s: %s", $d->{obj}, join " ", @{$d->{deps}})), "\n"; } - print "\n"; - print $makefile_extra{'osx'}; print "\nclean:\n". "\trm -f *.o\n". "\trm -rf *.app\n"; |