simple-arithmetic-compiler/runtime/Makefile
Laborratte5 896d2c6f7b
feat(runtime): Implement add sub mult and div opcodes
Implement calculation of add sub mult and div operations
2024-07-21 11:25:07 +02:00

10 lines
173 B
Makefile

CC=gcc
CFLAGS=-I.
DEPS=OperandStack.h BinCmdMap
OBJ=OperandStack.o salruntime.o
%.o: %.c $(DEPS)
$(CC) -c -o $@ $< $(CFLAGS)
salruntime: $(OBJ)
$(CC) -o $@ $^ $(CFLAGS)