diff options
author | Sergey Bugaev <bugaevc@gmail.com> | 2019-09-25 12:45:47 +0300 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-09-28 18:29:42 +0200 |
commit | 6ec625d6f38d93751be44afc79ab713b1cec8f1b (patch) | |
tree | c10c06243179ba637daa1d2a8fa1507dd522e6d8 /Userland/Makefile | |
parent | b9493ba783e833769e04b8276a42be8c18c98339 (diff) | |
download | serenity-6ec625d6f38d93751be44afc79ab713b1cec8f1b.zip |
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.
Diffstat (limited to 'Userland/Makefile')
-rw-r--r-- | Userland/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Makefile b/Userland/Makefile index 57993debfd..3129a738e0 100644 --- a/Userland/Makefile +++ b/Userland/Makefile @@ -19,7 +19,7 @@ clean: $(APPS) : % : %.o $(OBJS) @echo "LD $@" - @$(LD) -o $@ $(LDFLAGS) $< -lc -lgui -ldraw -laudio -lipc -lthread -lcore -lpcidb -lmarkdown + @$(LD) -o $@ $(LDFLAGS) $< -lc -lhtml -lgui -ldraw -laudio -lipc -lthread -lcore -lpcidb -lmarkdown %.o: %.cpp @echo "CXX $<" |