From 37cc2363074d40a2742dd3f52d07ad8cd6ccc7a0 Mon Sep 17 00:00:00 2001 From: robo-mop Date: Wed, 18 Oct 2023 04:46:22 +0530 Subject: [PATCH] Clean up Makefile --- codecs/qoi/Makefile | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/codecs/qoi/Makefile b/codecs/qoi/Makefile index a46260c9..c93dbde1 100644 --- a/codecs/qoi/Makefile +++ b/codecs/qoi/Makefile @@ -16,7 +16,6 @@ $(filter dec/%,$(OUT_JS)): dec/qoi_dec.o # ALL .js FILES $(OUT_JS): - @echo ">> Making $@" $(LD) \ $(LDFLAGS) \ --bind \ @@ -27,12 +26,6 @@ $(OUT_JS): # ALL .o FILES %.o: %.cpp $(CODEC_DIR) - $(info ) - $(info Making .o files) - $(info $$ + = $+) - $(info $$ @ = $@) - $(info ) - $(CXX) -c \ $(CXXFLAGS) \ -I $(CODEC_DIR) \ @@ -47,6 +40,3 @@ $(CODEC_DIR): clean: $(RM) $(OUT_JS) $(OUT_WASM) $(MAKE) -C $(CODEC_DIR) clean - -test: $(CODEC_BUILD_DIR)/libqoi.a - gcc -o bruh.out test.cpp $+ \ No newline at end of file