From 6aaf0770f376fa8b6feb9b7e1f30bb751e3a9cf3 Mon Sep 17 00:00:00 2001 From: Alexey Sokolov Date: Sun, 20 Oct 2013 17:52:04 +0400 Subject: [PATCH] Remove test .o files on make clean --- Makefile.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile.in b/Makefile.in index f0db3371..4c5e6c54 100644 --- a/Makefile.in +++ b/Makefile.in @@ -42,9 +42,9 @@ BIN_OBJS := $(patsubst %cpp,%o,$(BIN_SRCS)) TESTS := StringTest ConfigTest TESTS := $(addprefix test/,$(addsuffix .o,$(TESTS))) GTEST_VER := 1.7.0 -CLEAN := znc src/*.o core core.* .version_extra .depend modules/.depend +CLEAN := znc src/*.o test/*.o core core.* .version_extra .depend modules/.depend DISTCLEAN := Makefile config.log config.status znc-buildmod \ - modules/Makefile man/Makefile znc.pc znc-uninstalled.pc + modules/Makefile man/Makefile znc.pc znc-uninstalled.pc test/Makefile CXXFLAGS += -D_MODDIR_=\"$(MODDIR)\" -D_DATADIR_=\"$(DATADIR)\"