diff options
| author | Simon Tatham <anakin@pobox.com> | 2002-08-11 16:04:42 +0000 |
|---|---|---|
| committer | Simon Tatham <anakin@pobox.com> | 2002-08-11 16:04:42 +0000 |
| commit | 621a10b40a76b5f7600e041c6293cc186e878fdc (patch) | |
| tree | 07d9c53b4db5a5ff2f2fc5b14d90581b8e5eff1e | |
| parent | cd0c8ee2f81d98fa842442b5874ae4ff38bfbe85 (diff) | |
| download | halibut-621a10b40a76b5f7600e041c6293cc186e878fdc.zip halibut-621a10b40a76b5f7600e041c6293cc186e878fdc.tar.gz halibut-621a10b40a76b5f7600e041c6293cc186e878fdc.tar.bz2 halibut-621a10b40a76b5f7600e041c6293cc186e878fdc.tar.xz | |
Add `topclean' target to the top-level Makefile, to remove the
output from running Halibut on a test input file.
[originally from svn r1833]
| -rw-r--r-- | Makefile | 9 |
1 files changed, 7 insertions, 2 deletions
@@ -15,12 +15,17 @@ endif all: @test -d $(BUILDDIR) || mkdir $(BUILDDIR) @make -C $(BUILDDIR) -f ../Makefile REALBUILD=yes -spotless: +spotless: topclean @test -d $(BUILDDIR) || mkdir $(BUILDDIR) @make -C $(BUILDDIR) -f ../Makefile spotless REALBUILD=yes -clean: +clean: topclean @test -d $(BUILDDIR) || mkdir $(BUILDDIR) @make -C $(BUILDDIR) -f ../Makefile clean REALBUILD=yes +topclean: + # Remove Halibut output files in the source directory (may + # have been created by running, for example, `build/halibut + # inputs/test.but'). + rm -f *.html output.* else # The `real' makefile part. |