mirror of https://github.com/rui314/chibicc
51 lines
1.1 KiB
Makefile
51 lines
1.1 KiB
Makefile
CFLAGS=-std=c11 -g -fno-common
|
|
|
|
SRCS=$(wildcard *.c)
|
|
OBJS=$(SRCS:.c=.o)
|
|
|
|
TEST_SRCS=$(wildcard test/*.c)
|
|
TESTS=$(TEST_SRCS:.c=.exe)
|
|
|
|
# Stage 1
|
|
|
|
chibicc: $(OBJS)
|
|
$(CC) $(CFLAGS) -o $@ $^ $(LDFLAGS)
|
|
|
|
$(OBJS): chibicc.h
|
|
|
|
test/%.exe: chibicc test/%.c
|
|
./chibicc -Iinclude -Itest -c -o test/$*.o test/$*.c
|
|
$(CC) -o $@ test/$*.o -xc test/common
|
|
|
|
test: $(TESTS)
|
|
for i in $^; do echo $$i; ./$$i || exit 1; echo; done
|
|
test/driver.sh ./chibicc
|
|
|
|
test-all: test test-stage2
|
|
|
|
# Stage 2
|
|
|
|
stage2/chibicc: $(OBJS:%=stage2/%)
|
|
$(CC) $(CFLAGS) -o $@ $^ $(LDFLAGS)
|
|
|
|
stage2/%.o: chibicc %.c
|
|
mkdir -p stage2/test
|
|
./chibicc -c -o $(@D)/$*.o $*.c
|
|
|
|
stage2/test/%.exe: stage2/chibicc test/%.c
|
|
mkdir -p stage2/test
|
|
./stage2/chibicc -Iinclude -Itest -c -o stage2/test/$*.o test/$*.c
|
|
$(CC) -o $@ stage2/test/$*.o -xc test/common
|
|
|
|
test-stage2: $(TESTS:test/%=stage2/test/%)
|
|
for i in $^; do echo $$i; ./$$i || exit 1; echo; done
|
|
test/driver.sh ./stage2/chibicc
|
|
|
|
# Misc.
|
|
|
|
clean:
|
|
rm -rf chibicc tmp* $(TESTS) test/*.s test/*.exe stage2
|
|
find * -type f '(' -name '*~' -o -name '*.o' ')' -exec rm {} ';'
|
|
|
|
.PHONY: test clean test-stage2
|