chibicc/Makefile

52 lines
1.1 KiB
Makefile
Raw Normal View History

CFLAGS=-std=c11 -g -fno-common
2020-09-04 13:03:01 +03:00
2020-10-07 14:11:16 +03:00
SRCS=$(wildcard *.c)
OBJS=$(SRCS:.c=.o)
2020-09-04 13:03:01 +03:00
TEST_SRCS=$(wildcard test/*.c)
TESTS=$(TEST_SRCS:.c=.exe)
2019-08-24 06:08:12 +03:00
# Stage 1
2020-10-07 14:11:16 +03:00
chibicc: $(OBJS)
$(CC) $(CFLAGS) -o $@ $^ $(LDFLAGS)
$(OBJS): chibicc.h
2020-09-04 13:03:01 +03:00
test/%.exe: chibicc test/%.c
2020-09-25 17:18:32 +03:00
./chibicc -Itest -c -o test/$*.o test/$*.c
2020-10-08 08:34:23 +03:00
$(CC) -o $@ test/$*.o -xc test/common
2020-09-04 13:03:01 +03:00
test: $(TESTS)
for i in $^; do echo $$i; ./$$i || exit 1; echo; done
2019-08-24 06:08:12 +03:00
test/driver.sh ./chibicc
test-all: test test-stage2
# Stage 2
stage2/chibicc: $(OBJS:%=stage2/%)
$(CC) $(CFLAGS) -o $@ $^ $(LDFLAGS)
2020-10-08 08:34:23 +03:00
stage2/%.o: chibicc self.py %.c
2019-08-24 06:08:12 +03:00
mkdir -p stage2/test
./self.py chibicc.h $*.c > stage2/$*.c
2020-09-19 14:36:26 +03:00
./chibicc -c -o stage2/$*.o stage2/$*.c
2019-08-24 06:08:12 +03:00
stage2/test/%.exe: stage2/chibicc test/%.c
mkdir -p stage2/test
2020-09-25 17:18:32 +03:00
./stage2/chibicc -Itest -c -o stage2/test/$*.o test/$*.c
2020-10-08 08:34:23 +03:00
$(CC) -o $@ stage2/test/$*.o -xc test/common
2019-08-24 06:08:12 +03:00
test-stage2: $(TESTS:test/%=stage2/test/%)
for i in $^; do echo $$i; ./$$i || exit 1; echo; done
test/driver.sh ./stage2/chibicc
# Misc.
clean:
2019-08-24 06:08:12 +03:00
rm -rf chibicc tmp* $(TESTS) test/*.s test/*.exe stage2
2020-09-04 13:03:01 +03:00
find * -type f '(' -name '*~' -o -name '*.o' ')' -exec rm {} ';'
2019-08-24 06:08:12 +03:00
.PHONY: test clean test-stage2