diff options
author | davilla <davilla@4pi.com> | 2011-10-05 01:47:06 -0400 |
---|---|---|
committer | davilla <davilla@4pi.com> | 2011-10-05 01:47:25 -0400 |
commit | 5200e7cab3179769923c7c7d58fe6c094c720d38 (patch) | |
tree | dcbbcbd5c26c7caba0f5fd79d8fba1d98cc65b66 /lib/libshairport | |
parent | d2e11f35013b6a46c8761dccef2078bdabb2ed1f (diff) |
changed to have make clean do a distclean and add ldconfig when installing
Diffstat (limited to 'lib/libshairport')
-rw-r--r-- | lib/libshairport/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/libshairport/Makefile b/lib/libshairport/Makefile index b977104725..588734f19e 100644 --- a/lib/libshairport/Makefile +++ b/lib/libshairport/Makefile @@ -50,10 +50,11 @@ $(SO_NAME): $(SOURCE) install: make -C $(SOURCE) install + ldconfig clean: - make -C $(SOURCE) clean + rm -rf $(SOURCE) + #make -C $(SOURCE) clean distclean:: rm -rf $(SOURCE) - |