浏览代码

Remove redundant logging from Makefile.

scossu 1 天之前
父节点
当前提交
65ca26c462
共有 1 个文件被更改,包括 0 次插入6 次删除
  1. 0 6
      Makefile

+ 0 - 6
Makefile

@@ -128,8 +128,6 @@ lib: codec $(LIBS) ## Compile main library (static and dynamic linking).
 
 # Static library.
 $(STATIC_LIB): $(OBJ)
-	$(info Static Lib: $(STATIC_LIB))
-	$(info OBJ: $(OBJ))
 	$(AR) rs $(STATIC_LIB) $^ $(CODEC_OBJ)
 
 
@@ -196,16 +194,12 @@ uninstall:
 
 
 bin/test: lib $(TEST_SRC)
-	$(info DEBUG in bin/test: $(DEBUG))
-	$(info OBJ in bin/test: $(OBJ))
-	$(info CFLAGS in bin/test: $(CFLAGS))
 	$(CC) $(CFLAGS) $(LDFLAGS) -lvolksdata_dbg test.c -o bin/test
 
 
 .PHONY: test
 test: DEBUG = 1
 test: bin/test
-	$(info DEBUG in test: $(DEBUG))
 	LD_LIBRARY_PATH=$(BUILDDIR) exec bin/test