Major code overhaul

This commit is contained in:
Augusto Gunsch
2020-11-18 19:53:23 -03:00
parent 92f5fc88e5
commit 8e490746d1
8 changed files with 497 additions and 335 deletions

View File

@@ -1,2 +1,7 @@
main: assembler.c
${CC} -std=c99 assembler.c -o assembler
FILES = assembler.c main.c util.c
INCLUDES = -I.
CFLAGS = -std=c99
OUTFILE = assembler
main: ${FILES}
${CC} ${CFLAGS} ${FILES} -o ${OUTFILE}