aboutsummaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorXavier Del Campo Romero <xavi.dcr@tutanota.com>2023-10-25 14:06:39 +0200
committerXavier Del Campo Romero <xavi.dcr@tutanota.com>2023-10-25 14:10:52 +0200
commitc6083ca2234b7bd19df62a20eb2549385ffdb382 (patch)
tree8cd626bd646b92ca474b881e0d5cc908f697d130 /examples
parent280d400877c8c4c3d14a68f3ffe28b6d7a1b99bf (diff)
examples: Fix wrong library name
Diffstat (limited to 'examples')
-rw-r--r--examples/hello/Makefile2
-rw-r--r--examples/html/Makefile2
2 files changed, 2 insertions, 2 deletions
diff --git a/examples/hello/Makefile b/examples/hello/Makefile
index 275fa5a..e31bd6d 100644
--- a/examples/hello/Makefile
+++ b/examples/hello/Makefile
@@ -6,7 +6,7 @@ DEPS = \
LIBWEB = ../../libweb.a
DYNSTR = ../../dynstr/libdynstr.a
CFLAGS = -I ../../include -I ../../dynstr/include
-LIBWEB_FLAGS = -L ../../ -l libweb
+LIBWEB_FLAGS = -L ../../ -l web
DYNSTR_FLAGS = -L ../../dynstr -l dynstr
all: $(PROJECT)
diff --git a/examples/html/Makefile b/examples/html/Makefile
index 87d27aa..59612ed 100644
--- a/examples/html/Makefile
+++ b/examples/html/Makefile
@@ -6,7 +6,7 @@ DEPS = \
LIBWEB = ../../libweb.a
DYNSTR = ../../dynstr/libdynstr.a
CFLAGS = -I ../../include -I ../../dynstr/include
-LIBWEB_FLAGS = -L ../../ -l libweb
+LIBWEB_FLAGS = -L ../../ -l web
DYNSTR_FLAGS = -L ../../dynstr -l dynstr
all: $(PROJECT)