diff options
author | Simon Howard | 2010-01-05 17:20:58 +0000 |
---|---|---|
committer | Simon Howard | 2010-01-05 17:20:58 +0000 |
commit | 6fb7afc47cb78584d19ccb10284dd20243b06540 (patch) | |
tree | 380bb66f99c02261d05be2ed55458367653e6d34 /pkg/wince | |
parent | 860a17497bdc189f78f5a0bca000a0451d5ae624 (diff) | |
download | chocolate-doom-6fb7afc47cb78584d19ccb10284dd20243b06540.tar.gz chocolate-doom-6fb7afc47cb78584d19ccb10284dd20243b06540.tar.bz2 chocolate-doom-6fb7afc47cb78584d19ccb10284dd20243b06540.zip |
Add "clean" target to package makefiles.
Subversion-branch: /trunk/chocolate-doom
Subversion-revision: 1791
Diffstat (limited to 'pkg/wince')
-rw-r--r-- | pkg/wince/GNUmakefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/pkg/wince/GNUmakefile b/pkg/wince/GNUmakefile index 073346d7..c237922e 100644 --- a/pkg/wince/GNUmakefile +++ b/pkg/wince/GNUmakefile @@ -8,3 +8,6 @@ OUTPUT_FILE=$(PACKAGE_TARNAME)-$(PACKAGE_VERSION).cab $(OUTPUT_FILE) : $(CONFIG_FILE) $(DEPS) ./wince-cabgen $< $@ +clean: + rm -f $(OUTPUT_FILE) + |