This commit is contained in:
2026-06-11 10:59:54 -06:00
commit 8650a71f67
159 changed files with 78653 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
BIN = minic
CFLAGS += -g -Wall
$(BIN): yacc minic.y
./yacc minic.y
$(CC) $(CFLAGS) -o $@ y.tab.c
clean:
rm -f yacc minic y.*
.PHONY: clean