加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Makefile 524 Bytes
一键复制 编辑 原始数据 按行查看 历史
Rui Ueyama 提交于 2019-08-24 12:08 . Add a script for frankenbuild
CFLAGS=-std=c11 -g -static -fno-common
SRCS=$(wildcard *.c)
OBJS=$(SRCS:.c=.o)
chibicc: $(OBJS)
$(CC) -o $@ $(OBJS) $(LDFLAGS)
$(OBJS): chibi.h
chibicc-gen2: chibicc $(SRCS) chibi.h
./self.sh
extern.o: tests-extern
gcc -xc -c -o extern.o tests-extern
test: chibicc extern.o
./chibicc tests > tmp.s
gcc -static -o tmp tmp.s extern.o
./tmp
test-gen2: chibicc-gen2 extern.o
./chibicc-gen2 tests > tmp.s
gcc -static -o tmp tmp.s extern.o
./tmp
clean:
rm -rf chibicc chibicc-gen* *.o *~ tmp*
.PHONY: test clean
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化