⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 makefile

📁 一个很有名的硬件模拟器。可以模拟CPU
💻
字号:
all: anagram test-printf test-fmath test-math test-llong test-lswlranagram: ../src/anagram.c	$(CC) $(CFLAGS) -o anagram ../src/anagram.ctest-printf: ../src/test-printf.c	$(CC) $(CFLAGS) -o test-printf ../src/test-printf.c -lmtest-fmath: ../src/test-fmath.c	$(CC) $(CFLAGS) -o test-fmath ../src/test-fmath.c -lmtest-math: ../src/test-math.c	$(CC) $(CFLAGS) -o test-math ../src/test-math.c -lmtest-llong: ../src/test-llong.c	$(CC) $(CFLAGS) -o test-llong ../src/test-llong.ctest-lswlr: ../src/test-lswlr.c	$(CC) $(CFLAGS) -o test-lswlr ../src/test-lswlr.cclean:	rm -f anagram test-printf test-fmath test-math test-llong test-lswlr	rm -f *.o core *~ Makefile.bak

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -