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/LibM | |
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/LibM')
-rw-r--r-- | Libraries/LibM/Makefile | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/Libraries/LibM/Makefile b/Libraries/LibM/Makefile index dcf24e57af..983f8d1a69 100644 --- a/Libraries/LibM/Makefile +++ b/Libraries/LibM/Makefile @@ -17,9 +17,3 @@ $(LIBRARY): $(OBJS) clean: @echo "CLEAN"; rm -f $(LIBRARY) $(OBJS) *.d - -install: $(LIBRARY) - # Copy headers - rsync -a --include '*/' --include '*.h' --exclude '*' . ../../Root/usr/include - # Install the library - cp $(LIBRARY) ../../Root/usr/lib |