From 238132943154d3cf0a5837c915f6e072f01d4091 Mon Sep 17 00:00:00 2001 From: Dominic Reich Date: Tue, 15 Aug 2017 21:15:08 +0200 Subject: [PATCH] removes .PHONY and .PRECIOUS from Makefile (dont know why I put them there) --- Makefile | 4 ---- 1 file changed, 4 deletions(-) diff --git a/Makefile b/Makefile index 0231c60..76b9665 100644 --- a/Makefile +++ b/Makefile @@ -3,8 +3,6 @@ LIBS= CC=g++ CFLAGS=-march=native -O2 -g -Wall -.PHONY: default all clean - default: $(TARGET) all: default @@ -14,8 +12,6 @@ HEADERS = $(wildcard *.h) %.o: %.c $(HEADERS) $(CC) $(CFLAGS) -c $< -o $@ -.PRECIOUS: $(TARGET) $(OBJECTS) - $(TARGET): $(OBJECTS) $(CC) $(OBJECTS) -Wall $(LIBS) -o $@