vm-translator/Makefile

8 lines
151 B
Makefile
Raw Normal View History

2020-10-29 20:22:03 -04:00
FILES = parser.c main.c
INCLUDES = -I.
CFLAGS = -std=c99 -g
OUTFILE = vmtranslator
main: ${FILES}
${CC} ${CFLAGS} ${INCLUDES} -o ${OUTFILE} ${FILES}