Refactor Universal Machine interpreter

This commit is contained in:
Dimitri Lozeve 2021-01-12 09:14:57 +01:00
parent 9376de6140
commit 7d4c2b3113
5 changed files with 42 additions and 26 deletions

View file

@ -4,5 +4,5 @@ CFLAGS = -Wall -Werror -pedantic -O3
.PHONY: all
all: um
um: um.c
$(CC) $< -o $@ $(CFLAGS)
um: src/um.c
$(CC) $^ -o $@ $(CFLAGS)