aboutsummaryrefslogtreecommitdiff
path: root/examples/html/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'examples/html/Makefile')
-rw-r--r--examples/html/Makefile10
1 files changed, 5 insertions, 5 deletions
diff --git a/examples/html/Makefile b/examples/html/Makefile
index 77d94f8..87d27aa 100644
--- a/examples/html/Makefile
+++ b/examples/html/Makefile
@@ -3,10 +3,10 @@
PROJECT = html
DEPS = \
main.o
-SLWEB = ../../libslweb.a
+LIBWEB = ../../libweb.a
DYNSTR = ../../dynstr/libdynstr.a
CFLAGS = -I ../../include -I ../../dynstr/include
-SLWEB_FLAGS = -L ../../ -l slweb
+LIBWEB_FLAGS = -L ../../ -l libweb
DYNSTR_FLAGS = -L ../../dynstr -l dynstr
all: $(PROJECT)
@@ -16,10 +16,10 @@ clean:
FORCE:
-$(PROJECT): $(DEPS) $(SLWEB) $(DYNSTR)
- $(CC) $(LDFLAGS) $(DEPS) $(SLWEB_FLAGS) $(DYNSTR_FLAGS) -o $@
+$(PROJECT): $(DEPS) $(LIBWEB) $(DYNSTR)
+ $(CC) $(LDFLAGS) $(DEPS) $(LIBWEB_FLAGS) $(DYNSTR_FLAGS) -o $@
-$(SLWEB): FORCE
+$(LIBWEB): FORCE
+cd ../../ && $(MAKE)
$(DYNSTR): FORCE