diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-07-21 21:28:48 +0200 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-07-21 21:28:48 +0200 |
commit | c7ea94697ed983f4fb300ee6a7d19cdd13c81169 (patch) | |
tree | fe87a7968cb749190a168fc2ce22251127840a9c /Libraries/LibAudio | |
parent | 38b13f150852938b2ed1e7c324cb18a1a25ae7b0 (diff) | |
download | serenity-c7ea94697ed983f4fb300ee6a7d19cdd13c81169.zip |
Libraries: Remove unused "install" targets.
We've been using a per-directory "install.sh" for some time, so let's get
rid of the old way of doing things.
Diffstat (limited to 'Libraries/LibAudio')
-rw-r--r-- | Libraries/LibAudio/Makefile | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/Libraries/LibAudio/Makefile b/Libraries/LibAudio/Makefile index 33939c3fba..de13688258 100644 --- a/Libraries/LibAudio/Makefile +++ b/Libraries/LibAudio/Makefile @@ -19,13 +19,3 @@ $(LIBRARY): $(OBJS) clean: @echo "CLEAN"; rm -f $(LIBRARY) $(OBJS) *.d - -install: $(LIBRARY) - mkdir -p ../../Root/usr/include/LibAudio - mkdir -p ../../Root/usr/include/AK - mkdir -p ../../Root/usr/lib - # Copy headers - rsync -r -a --include '*/' --include '*.h' --exclude '*' . ../../Root/usr/include/LibAudio - rsync -r -a --include '*/' --include '*.h' --exclude '*' ../../AK/ ../../Root/usr/include/AK - # Install the library - cp $(LIBRARY) ../../Root/usr/lib |