Implement OperandStack for Runtime
This commit is contained in:
parent
986c04053e
commit
920251e99f
3 changed files with 52 additions and 1 deletions
|
|
@ -1,5 +1,10 @@
|
|||
CC=gcc
|
||||
CFLAGS=-I.
|
||||
DEPS=OperandStack.h
|
||||
OBJ=OperandStack.o salruntime.o
|
||||
|
||||
salruntime: salruntime.c
|
||||
%.o: %.c $(DEPS)
|
||||
$(CC) -c -o $@ $< $(CFLAGS)
|
||||
|
||||
salruntime: $(OBJ)
|
||||
$(CC) -o $@ $^ $(CFLAGS)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue