1 Star 0 Fork 84

3023244122-hanjiuxi/lab1

forked from 计算机系统基础/lab1 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
Makefile 886 Bytes
一键复制 编辑 原始数据 按行查看 历史
李幼萌 提交于 2024-02-28 16:24 . modified Makefile
#
# Makefile that builds btest and other helper programs for the CS:APP data lab
#
CC = gcc
CFLAGS = -O1 -Wall -m32
LIBS = -lm
GITFLAGS = -q --no-verify --allow-empty
all: btest fshow ishow submit commit
btest: btest.c bits.c decl.c tests.c btest.h bits.h
$(CC) $(CFLAGS) $(LIBS) -o btest bits.c btest.c decl.c tests.c
fshow: fshow.c
$(CC) $(CFLAGS) -o fshow fshow.c
ishow: ishow.c
$(CC) $(CFLAGS) -o ishow ishow.c
# Forces a recompile. Used by the driver program.
btestexplicit:
$(CC) $(CFLAGS) $(LIBS) -o btest bits.c btest.c decl.c tests.c
clean:
rm -f *.o btest fshow ishow lab1-handin.zip *~
commit:
-@git add . -A --ignore-errors
-@while (test -e .git/index.lock); do sleep 0.1; done
-@(id -un && uname -a && uptime && (head -c 20 /dev/urandom | hexdump -v -e '"%02x"')) | git commit -F - $(GITFLAGS)
submit:
rm -rf lab1-handin.zip
zip lab1-handin.zip bits.c
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/qqqwertyuioppp/lab1.git
[email protected]:qqqwertyuioppp/lab1.git
qqqwertyuioppp
lab1
lab1
master

搜索帮助