Day 2 part I

This commit is contained in:
2024-12-05 22:01:27 +01:00
parent b6c66136f7
commit 941ee5f329
3 changed files with 129 additions and 0 deletions

View File

@@ -14,5 +14,9 @@ bin/%: src/%.c $(STDLIB_SOURCES) $(STDLIB_HEADERS)
gcc $(CFLAGS) $< $(STDLIB_SOURCES) -o $@
strip -R .comment $@
out/%.txt: in/%.txt bin/%
@mkdir -p $(@D)
<$< bin/$* >$@
clean:
rm -rf bin