mirror of
https://github.com/RGBCube/serenity
synced 2025-05-20 11:45:06 +00:00

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.
10 lines
168 B
Makefile
10 lines
168 B
Makefile
include ../../Makefile.common
|
|
|
|
LIBRARY = libhtml.a
|
|
|
|
all: $(LIBRARY)
|
|
|
|
include Makefile.shared
|
|
|
|
$(LIBRARY): $(LIBHTML_OBJS)
|
|
@echo "LIB $@"; $(AR) rcs $@ $(LIBHTML_OBJS)
|