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.
This commit is contained in:
Andreas Kling 2019-07-21 21:28:48 +02:00
parent 38b13f1508
commit c7ea94697e
Notes: sideshowbarker 2024-07-19 13:05:51 +09:00
7 changed files with 0 additions and 59 deletions

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -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