qbe

Internal scc patchset buffer for QBE
Log | Files | Refs | README | LICENSE

commit c46e1ba7b564ecdced28889258051e35b5df228f
parent 6405a0742f7cd31aa801c660c48c9cc6d7ca23df
Author: Quentin Carbonneaux <quentin.carbonneaux@yale.edu>
Date:   Sun, 27 Mar 2016 15:24:55 -0400

append instead of clobber CFLAGS

Diffstat:
Msrc/Makefile | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/Makefile b/src/Makefile @@ -1,7 +1,7 @@ BIN = qbe OBJ = main.o util.o parse.o mem.o ssa.o copy.o live.o isel.o spill.o rega.o emit.o -CFLAGS = -Wall -Wextra -std=c99 -g -pedantic +CFLAGS += -Wall -Wextra -std=c99 -g -pedantic $(BIN): $(OBJ) $(CC) $(LDFLAGS) $(OBJ) -o $@