1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 13:38:11 +00:00
serenity/Libraries/LibX86/Makefile
Andreas Kling 32d83fdee4 LibX86: Add an X86 instruction decoder library + basic disassembler
This will be very useful for developer tools like ProfileView, and also
for future tools like debuggers and such. :^)
2020-04-11 13:16:17 +02:00

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