From a23fe88c3ae871e48923e5eb2add58614185b688 Mon Sep 17 00:00:00 2001 From: Daniel Santos Date: Thu, 17 Mar 2022 07:42:22 +0000 Subject: [PATCH] Makefile fix * fix sun-to-earth rule, missing -o Signed-off-by: Daniel Santos --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 $@ $^