diff options
-rw-r--r-- | Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Makefile b/Makefile index d923716..ab98ef1 100644 --- a/Makefile +++ b/Makefile @@ -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 |