mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-07 09:04:30 +00:00
17 lines
338 B
Makefile
17 lines
338 B
Makefile
OBJS = \
|
|
Document.o \
|
|
Paragraph.o \
|
|
Heading.o \
|
|
CodeBlock.o \
|
|
List.o \
|
|
Text.o
|
|
|
|
LIBRARY = libmarkdown.a
|
|
|
|
install:
|
|
mkdir -p $(SERENITY_BASE_DIR)/Root/usr/include/LibMarkdown/
|
|
cp *.h $(SERENITY_BASE_DIR)/Root/usr/include/LibMarkdown/
|
|
cp $(LIBRARY) $(SERENITY_BASE_DIR)/Root/usr/lib/
|
|
|
|
include ../../Makefile.common
|