From: bylex Date: Wed, 25 Sep 2024 06:25:39 +0000 (+0200) Subject: Add gitignore and basic makefile X-Git-Url: https://git.bylex.cz/?a=commitdiff_plain;h=80f82309cf71c2cb919a4ce747c3b74fd33c0aae;p=maturita.git Add gitignore and basic makefile --- diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..870c28d --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +interpreter +a.out +opcodes.h.bak +assembler diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..6a6f3b3 --- /dev/null +++ b/Makefile @@ -0,0 +1,7 @@ +all: int ass +int: + $(CC) $(CFLAGS) interpreter.c -o interpreter +ass: + $(CC) $(CFLAGS) assembler.c -o assembler +clean: + rm -f interpreter assembler