1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-28 02:07:35 +00:00

Toolchain: The toolchain script is now working 🎉

This commit is contained in:
VAN BOSSUYT Nicolas 2019-04-25 19:28:10 +02:00 committed by Andreas Kling
parent 4977fd22b8
commit 3761bc3ed7
3 changed files with 12 additions and 4 deletions

View file

@ -21,3 +21,8 @@ $(LIBRARY): $(OBJS)
clean:
@echo "CLEAN"; rm -f $(LIBRARY) $(OBJS) *.d
install: $(LIBRARY)
# Copy headers
rsync -a --include '*/' --include '*.h' --exclude '*' . ../Base/usr/include
# Install the library
cp $(LIBRARY) ../Base/usr/lib