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 | |
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.
-rw-r--r-- | Libraries/LibAudio/Makefile | 10 | ||||
-rw-r--r-- | Libraries/LibC/Makefile | 11 | ||||
-rw-r--r-- | Libraries/LibCore/Makefile | 10 | ||||
-rw-r--r-- | Libraries/LibDraw/Makefile | 7 | ||||
-rw-r--r-- | Libraries/LibGUI/Makefile | 7 | ||||
-rw-r--r-- | Libraries/LibHTML/Makefile | 8 | ||||
-rw-r--r-- | Libraries/LibM/Makefile | 6 |
7 files changed, 0 insertions, 59 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 diff --git a/Libraries/LibC/Makefile b/Libraries/LibC/Makefile index 5c563fcdbe..bd1eb07171 100644 --- a/Libraries/LibC/Makefile +++ b/Libraries/LibC/Makefile @@ -81,14 +81,3 @@ $(LIBRARY): $(CPP_OBJS) $(ASM_OBJS) clean: @echo "CLEAN"; rm -f $(LIBRARY) $(CPP_OBJS) $(ASM_OBJS) *.d - -install: $(LIBRARY) startfiles - mkdir -p ../../Root/usr/include - mkdir -p ../../Root/usr/lib - # Copy headers - rsync -r -a --include '*/' --include '*.h' --exclude '*' . ../../Root/usr/include - # Install the library - cp $(LIBRARY) ../../Root/usr/lib - cp crt0.o ../../Root/usr/lib/ - cp crti.ao ../../Root/usr/lib/crti.o - cp crtn.ao ../../Root/usr/lib/crtn.o diff --git a/Libraries/LibCore/Makefile b/Libraries/LibCore/Makefile index c49f42ff08..9c169d1520 100644 --- a/Libraries/LibCore/Makefile +++ b/Libraries/LibCore/Makefile @@ -39,13 +39,3 @@ $(LIBRARY): $(OBJS) clean: @echo "CLEAN"; rm -f $(LIBRARY) $(OBJS) *.d - -install: $(LIBRARY) - mkdir -p ../../Root/usr/include/LibCore - mkdir -p ../../Root/usr/include/AK - mkdir -p ../../Root/usr/lib - # Copy headers - rsync -r -a --include '*/' --include '*.h' --exclude '*' . ../../Root/usr/include/LibCore - rsync -r -a --include '*/' --include '*.h' --exclude '*' ../../AK/ ../../Root/usr/include/AK - # Install the library - cp $(LIBRARY) ../../Root/usr/lib diff --git a/Libraries/LibDraw/Makefile b/Libraries/LibDraw/Makefile index ff2839f0b8..c1330120f5 100644 --- a/Libraries/LibDraw/Makefile +++ b/Libraries/LibDraw/Makefile @@ -26,10 +26,3 @@ $(LIBRARY): $(OBJS) clean: @echo "CLEAN"; rm -f $(LIBRARY) $(OBJS) *.d - -install: $(LIBRARY) - mkdir -p ../../Root/usr/include/LibGfx - # Copy headers - rsync -r -a --include '*/' --include '*.h' --exclude '*' . ../../Root/usr/include/LibGfx - # Install the library - cp $(LIBRARY) ../../Root/usr/lib diff --git a/Libraries/LibGUI/Makefile b/Libraries/LibGUI/Makefile index 1b2c461115..86224b3c65 100644 --- a/Libraries/LibGUI/Makefile +++ b/Libraries/LibGUI/Makefile @@ -69,10 +69,3 @@ $(LIBRARY): $(OBJS) clean: @echo "CLEAN"; rm -f $(LIBRARY) $(OBJS) *.d - -install: $(LIBRARY) - mkdir -p ../../Root/usr/include/LibGUI - # Copy headers - rsync -r -a --include '*/' --include '*.h' --exclude '*' . ../../Root/usr/include/LibGUI - # Install the library - cp $(LIBRARY) ../../Root/usr/lib diff --git a/Libraries/LibHTML/Makefile b/Libraries/LibHTML/Makefile index 8bd100cde1..cc0848d309 100644 --- a/Libraries/LibHTML/Makefile +++ b/Libraries/LibHTML/Makefile @@ -11,11 +11,3 @@ tho: $(TEST_OBJS) $(LIBRARY) $(LIBRARY): $(LIBHTML_OBJS) @echo "LIB $@"; $(AR) rcs $@ $(LIBHTML_OBJS) - -install: $(LIBRARY) - mkdir -p ../../Root/usr/include/LibHTML - # Copy headers - rsync -r -a --include '*/' --include '*.h' --exclude '*' . ../../Root/usr/include/LibHTML - # Install the library - cp $(LIBRARY) ../../Root/usr/lib - 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 |