add .PHONY to Makefile

* add .PHONY to some rules in Makefile

Signed-off-by: Daniel Santos <dacs.git@brilhante.top>
This commit is contained in:
Daniel Santos 2022-03-12 17:21:36 +00:00
parent 2dd0e8663e
commit 6e579c2763
1 changed files with 4 additions and 0 deletions

View File

@ -2,6 +2,7 @@ CC := c99
CFLAGS := -Wall -Wextra -O2
DEP := numericx.c
.PHONY: all
all: decimal-earth earth-decimal decimal-sun sun-decimal decimal-lori decimal-neonal decimal-nonal lori-decimal neonal-decimal nonal-decimal d-n1 d-neon1 n1-d neon1-d uninfinity
decimal-earth: $(DEP)
@ -49,12 +50,15 @@ neon1-d: $(DEP)
uninfinity: $(DEP)
$(CC) $(CFLAGS) -DFROM_NUMERICALS=\"0123456789\" -DFROM_UNITS_ON_THE_END -DFROM_FIRST_NUMBER_VOID -DFROM_INFINITE_BASE -DTO_NUMERICALS=\"0123456789\" -DTO_UNITS_ON_THE_END -DTO_FIRST_NUMBER_VOID -o $@ $^
.PHONY: clean
clean:
\rm -f *-decimal decimal-* d-n* *1-d uninfinity
.PHONY: run
run: decimal-earth
./decimal-earth 21
.PHONY: mem
mem: decimal-earth
valgrind --leak-check=full --show-leak-kinds=all -s decimal-earth 999