Stack uses only references and equation objects

This commit is contained in:
nils polek
2024-01-15 11:48:21 +00:00
parent f29f500d0c
commit 6cc2ff87ca
12 changed files with 72 additions and 20 deletions

View File

@@ -3,6 +3,9 @@
# Compiler
CC = gcc
# program to Run
F = prog.bin
# Compiler flags
CFLAGS = -g -Wall -std=c99 -pedantic
@@ -19,8 +22,11 @@ all:
clean:
rm -f $(OBJ) $(TARGET)
debug: all
./$(TARGET) --debug $(F)
run: all
./$(TARGET)
./$(TARGET) $(F)
nja: ./nja/nja$(V)
./nja/nja$(V) $(IN) $(OUT)