removes .PHONY and .PRECIOUS from Makefile
(dont know why I put them there)
This commit is contained in:
parent
6396f68552
commit
2381329431
1 changed files with 0 additions and 4 deletions
4
Makefile
4
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 $@
|
||||
|
||||
|
|
Loading…
Reference in a new issue