Lab: Add basic TAC example

This commit is contained in:
Alex Hirsch
2021-05-06 23:46:18 +02:00
parent 9d2386b339
commit 7be668134d
4 changed files with 448 additions and 0 deletions

8
lab/tac/Makefile Normal file
View File

@@ -0,0 +1,8 @@
CFLAGS = -std=c17 -Wall -Wextra
all: tac
clean:
$(RM) tac
.PHONY: all clean