ladybird/Libraries/LibHTML/Makefile
Sergey Bugaev 6ec625d6f3 Userland+LibHTML: Add the html command
This is a simple command that can be used to display HTML from a given
file, or from the standard input, in an HtmlView. It replaces the `tho`
(test HTML output) command.
2019-09-28 18:29:42 +02:00

11 lines
168 B
Makefile

include ../../Makefile.common
LIBRARY = libhtml.a
all: $(LIBRARY)
include Makefile.shared
$(LIBRARY): $(LIBHTML_OBJS)
@echo "LIB $@"; $(AR) rcs $@ $(LIBHTML_OBJS)