mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 13:38:11 +00:00

This will be very useful for developer tools like ProfileView, and also for future tools like debuggers and such. :^)
11 lines
248 B
Makefile
11 lines
248 B
Makefile
OBJS = \
|
|
Instruction.o
|
|
|
|
LIBRARY = libx86.a
|
|
|
|
install:
|
|
mkdir -p $(SERENITY_BASE_DIR)/Root/usr/include/LibX86/
|
|
cp *.h $(SERENITY_BASE_DIR)/Root/usr/include/LibX86/
|
|
cp $(LIBRARY) $(SERENITY_BASE_DIR)/Root/usr/lib/
|
|
|
|
include ../../Makefile.common
|