From 5afb2c672ab7c7771e15db2889a0a108be321b09 Mon Sep 17 00:00:00 2001 From: gabime Date: Sun, 26 Jan 2014 21:28:56 +0200 Subject: [PATCH] makefile fix --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 102afee4..eb4d0b1f 100644 --- a/Makefile +++ b/Makefile @@ -1,10 +1,10 @@ CC = g++ CCFLAGS = -std=c++11 -pthread -Iinclude -O3 -flto -all: lib testlog +all: testlog testlog: test.o lib - $(CC) -o $testlog test.o libc11log.a $(CCFLAGS) + $(CC) -o testlog test.o libc11log.a $(CCFLAGS) lib: factory.o formatters.o line_logger.o os.o ar rvs libc11log.a $^; @@ -27,4 +27,4 @@ os.o: src/os.cpp .PHONY: clean clean: - rm *.o + rm -f *.o testlog