summaryrefslogtreecommitdiff
path: root/LibGUI/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'LibGUI/Makefile')
-rw-r--r--LibGUI/Makefile6
1 files changed, 6 insertions, 0 deletions
diff --git a/LibGUI/Makefile b/LibGUI/Makefile
index 766cc49db9..1039ff00a0 100644
--- a/LibGUI/Makefile
+++ b/LibGUI/Makefile
@@ -77,3 +77,9 @@ $(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