about summary refs log tree commit diff stats
path: root/Makefile
diff options
context:
space:
mode:
authorbptato <nincsnevem662@gmail.com>2023-08-13 18:17:53 +0200
committerbptato <nincsnevem662@gmail.com>2023-08-13 18:17:53 +0200
commitb4da6c35e7676b8c53424a41194da5f5ec5fb6ce (patch)
treea2ebb9fed02aef3848d59888abcf283061fe8f2e /Makefile
parent15248d76d8d6e00126e7f42de8041d6234a7e539 (diff)
downloadchawan-b4da6c35e7676b8c53424a41194da5f5ec5fb6ce.tar.gz
makefile: fix qjsobj not being created
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index ff232e4b..63e0befa 100644
--- a/Makefile
+++ b/Makefile
@@ -36,7 +36,8 @@ $(OBJDIR)/%/:
 $(QJSOBJ)/%.o: lib/quickjs/%.c | $(QJSOBJ)/
 	$(CC) $(CFLAGS) -c -o $@ $<
 
-lib/libquickjs.a: $(QJSOBJ)/quickjs.o $(QJSOBJ)/libregexp.o $(QJSOBJ)/libunicode.o $(QJSOBJ)/cutils.o | $(QJSOBJ)
+lib/libquickjs.a: $(QJSOBJ)/quickjs.o $(QJSOBJ)/libregexp.o \
+		$(QJSOBJ)/libunicode.o $(QJSOBJ)/cutils.o | $(QJSOBJ)/
 	$(AR) rcs $@ $^
 
 clean: