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 $@