summaryrefslogtreecommitdiff
path: root/Userland/Makefile
diff options
context:
space:
mode:
authorSergey Bugaev <bugaevc@gmail.com>2019-09-25 12:45:47 +0300
committerAndreas Kling <awesomekling@gmail.com>2019-09-28 18:29:42 +0200
commit6ec625d6f38d93751be44afc79ab713b1cec8f1b (patch)
treec10c06243179ba637daa1d2a8fa1507dd522e6d8 /Userland/Makefile
parentb9493ba783e833769e04b8276a42be8c18c98339 (diff)
downloadserenity-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/Makefile2
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 $<"