1 Star 0 Fork 19

3023244122-hanjiuxi/lab5

forked from 计算机系统基础/lab5 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
Makefile 1.04 KB
一键复制 编辑 原始数据 按行查看 历史
李幼萌 提交于 2024-02-28 17:24 . Modified Makefile
#
# Student makefile for Cache Lab
# Note: requires a 64-bit x86-64 system
#
CC = gcc
CFLAGS = -g -Wall -Werror -std=c99 -m64
GITFLAGS = -q --no-verify --allow-empty
all: csim test-trans tracegen commit
# Generate a handin tar file each time you compile
-rm lab5-handin.zip
-zip lab5-handin.zip csim.c trans.c
csim: csim.c cachelab.c cachelab.h
$(CC) $(CFLAGS) -o csim csim.c cachelab.c -lm
test-trans: test-trans.c trans.o cachelab.c cachelab.h
$(CC) $(CFLAGS) -o test-trans test-trans.c cachelab.c trans.o
tracegen: tracegen.c trans.o cachelab.c
$(CC) $(CFLAGS) -O0 -o tracegen tracegen.c trans.o cachelab.c
trans.o: trans.c
$(CC) $(CFLAGS) -O0 -c trans.c
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)
#
# Clean the src dirctory
#
clean:
rm -rf *.o
rm -f *.tar
rm -f csim
rm -f test-trans tracegen
rm -f trace.all trace.f*
rm -f .csim_results .marker
rm lab5-handin.zip
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/qqqwertyuioppp/lab5.git
[email protected]:qqqwertyuioppp/lab5.git
qqqwertyuioppp
lab5
lab5
master

搜索帮助