gmqcc/Makefile

37 lines
721 B
Makefile
Raw Normal View History

2012-04-25 14:20:38 +00:00
CC ?= clang
CFLAGS += -Wall -I. -pedantic-errors -std=c90
2012-04-29 21:28:01 +00:00
OBJ = lex.o \
error.o \
parse.o \
typedef.o \
util.o \
code.o \
asm.o \
ast.o \
ir.o
2012-04-29 21:28:01 +00:00
OBJ_A = test/ast-test.o
OBJ_I = test/ir-test.o
OBJ_C = main.o
2012-04-09 10:42:06 +00:00
#default is compiler only
default: gmqcc
2012-04-09 10:42:06 +00:00
%.o: %.c
2012-04-10 01:32:24 +00:00
$(CC) -c $< -o $@ $(CFLAGS)
2012-04-09 10:42:06 +00:00
# test targets
2012-04-29 21:28:01 +00:00
test_ast: $(OBJ_A) $(OBJ)
$(CC) -o $@ $^ $(CFLAGS)
2012-04-29 21:28:01 +00:00
test_ir: $(OBJ_I) $(OBJ)
$(CC) -o $@ $^ $(CFLAGS)
test: test_ast test_ir
# compiler target
2012-04-29 21:28:01 +00:00
gmqcc: $(OBJ_C) $(OBJ)
2012-04-09 10:42:06 +00:00
$(CC) -o $@ $^ $(CFLAGS)
#all target is test and all
all: test gmqcc
2012-04-09 10:42:06 +00:00
clean:
rm -f *.o gmqcc test_ast test_ir test/*.o