about summary refs log tree commit diff stats
path: root/Makefile
diff options
context:
space:
mode:
authorbptato <nincsnevem662@gmail.com>2023-06-24 00:22:26 +0200
committerbptato <nincsnevem662@gmail.com>2023-06-24 00:22:49 +0200
commitb10548ed6a1df090cdc7d139ba4ce531ebb1c7ea (patch)
treea7874714edd6fa56059fef5304a42222f560e79d /Makefile
parent7e46832b4fc33dedcc4ecf66237c7a01080e998b (diff)
downloadchawan-b10548ed6a1df090cdc7d139ba4ce531ebb1c7ea.tar.gz
Makefile: remove random echo statement
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile1
1 files changed, 0 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 084880c6..6583d6cf 100644
--- a/Makefile
+++ b/Makefile
@@ -30,7 +30,6 @@ $(OBJDIR)/%:
 	mkdir -p $@
 
 $(QJSOBJ)/%.o: lib/quickjs/%.c | $(QJSOBJ)
-	echo $@
 	$(CC) $(CFLAGS) -c -o $@ $<
 
 lib/libquickjs.a: $(QJSOBJ)/quickjs.o $(QJSOBJ)/libregexp.o $(QJSOBJ)/libunicode.o $(QJSOBJ)/cutils.o | $(QJSOBJ)