simple-arithmetic-compiler/runtime/Makefile

5 lines
70 B
Makefile

CC=gcc
CFLAGS=-I.
salruntime: salruntime.c
$(CC) -o $@ $^ $(CFLAGS)