diff options
author | Daniel Santos <dacs.git@brilhante.top> | 2022-03-17 07:42:22 +0000 |
---|---|---|
committer | Daniel Santos <dacs.git@brilhante.top> | 2022-03-17 07:49:49 +0000 |
commit | a23fe88c3ae871e48923e5eb2add58614185b688 (patch) | |
tree | 810473afb126faf3909fdc8453b8fce021413534 | |
parent | 2fe995048c5d055ed9439006074170d4e20c9f4f (diff) | |
download | numericx-c-a23fe88c3ae871e48923e5eb2add58614185b688.tar.gz |
Makefile fix
* fix sun-to-earth rule, missing -o Signed-off-by: Daniel Santos <dacs.git@brilhante.top>
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile index e521021..7b885f6 100644 --- a/Makefile +++ b/Makefile @@ -18,7 +18,7 @@ sun-to-decimal: $(DEP) $(CC) $(CFLAGS) -DFROM_NUMERICALS=\"123456789\" -DTO_NUMERICALS=\"0123456789\" -DTO_FIRST_NUMBER_VOID -DTO_INFINITE_BASE -o $@ $^ sun-to-earth: $(DEP) - $(CC) $(CFLAGS) -DFROM_NUMERICALS=\"123456789\" -DTO_NUMERICALS=\"12345\" $@ $^ + $(CC) $(CFLAGS) -DFROM_NUMERICALS=\"123456789\" -DTO_NUMERICALS=\"12345\" -o $@ $^ earth-to-sun: $(DEP) $(CC) $(CFLAGS) -DFROM_NUMERICALS=\"12345\" -DTO_NUMERICALS=\"123456789\" -o $@ $^ |