mirror of
git://git.tartarus.org/simon/puzzles.git
synced 2025-04-21 08:01:30 -07:00
Files

- puzzles.chm and puzzles.cnt need to be removed as well - HTML Help Workshop is no longer used, so drop the patterns for its intermediate output
18 lines
513 B
Makefile
18 lines
513 B
Makefile
all: puzzles.chm puzzles.hlp puzzles.txt HACKING
|
|
|
|
preprocessed.but: puzzles.but
|
|
sed 's/PREFIX-/$(BINPREFIX)/g' puzzles.but > preprocessed.but
|
|
|
|
puzzles.chm: preprocessed.but
|
|
halibut --chm=puzzles.chm preprocessed.but
|
|
puzzles.hlp: preprocessed.but
|
|
halibut --winhelp=puzzles.hlp preprocessed.but
|
|
puzzles.txt: preprocessed.but
|
|
halibut --text=puzzles.txt preprocessed.but
|
|
|
|
HACKING: devel.but
|
|
halibut --text=HACKING devel.but
|
|
|
|
clean:
|
|
rm -f puzzles.chm puzzles.cnt puzzles.hlp puzzles.txt preprocessed.but HACKING
|