Files
ladybird/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

12 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