aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorH. Peter Anvin <hpa@zytor.com>2005-12-29 15:35:33 -0800
committerH. Peter Anvin <hpa@zytor.com>2005-12-29 15:35:33 -0800
commitbea60afab92a9b9e85707035ecc34b7e6bdef020 (patch)
tree372a1d31059356e139931a1736e452cf46ead57f
parentba6096e75175b3fed31f746fc5796ee1c6ced194 (diff)
downloadlibucd-bea60afab92a9b9e85707035ecc34b7e6bdef020.tar.gz
Clean up *.a, add make distcleanlibucd-0.1.1
-rw-r--r--Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 1ab86cf..0823caf 100644
--- a/Makefile
+++ b/Makefile
@@ -52,9 +52,12 @@ all : $(LIB_FILE) $(SO_FILE) $(SO_NAME) ucd.h
clean:
rm -rf gen enums
- rm -f *.o *.ho *.lo *.i *.*.a *.so *.so.* ucd.h
+ rm -f *.o *.ho *.lo *.i *.s *.a *.so *.so.* ucd.h
$(MAKE) -C perfect clean
+distclean: clean
+ find . -name \*~ -print0 | xargs -0rt rm -f
+
install: all
mkdir -p $(INSTALLROOT)$(libdir)
$(INSTALL_LIB) $(LIB_FILE) $(SO_FILE) $(SO_NAME) $(INSTALLROOT)$(libdir)