diff options
author | Keith Whitwell <keith@tungstengraphics.com> | 2004-12-15 11:03:41 +0000 |
---|---|---|
committer | Keith Whitwell <keith@tungstengraphics.com> | 2004-12-15 11:03:41 +0000 |
commit | ae68c3212b46024534217e5d9270916b1156c15f (patch) | |
tree | 7851ed1af1441a296297b41264aa7b8d665ace79 /Makefile | |
parent | 3f1205819abc893151c8572b72be51ae5f5bc150 (diff) |
Add some catchall commands to realclean target to remove built files
which are forgotten about when the configs/current symlink changes.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -25,6 +25,10 @@ realclean: $(MAKE) clean -rm -rf lib* -rm -f $(TOP)/configs/current + -rm -f `find . -name \*.o` + -rm -f `find . -name \*.a` + -rm -f `find . -name \*.so` + install: |