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

📄 makefile

📁 随着计算机信息技术的飞速发展
💻
字号:
CC=m68k-palmos-coff-gcc
CFLAGS=-O1 #-DERROR_CHECK_LEVEL=2
LD=m68k-palmos-coff-gcc
OBJRES=m68k-palmos-coff-obj-res

OBJS=irtest.o

.c.o:
	$(CC) $(CFLAGS) -c $<

irtest.prc: timestamp-grc timestamp-bin
	build-prc irtest.prc "IrTest" TKD1 *.grc *.bin

timestamp-bin: irtest.rcp
	pilrc irtest.rcp
	touch timestamp-bin

timestamp-grc: $(OBJS)
	$(CC) -O1 $(OBJS) -o irtest
	$(OBJRES) irtest
	touch timestamp-grc

irtest.c: irtest.h

irtest.rcp: irtest.h

clean:
	rm -f *~
	rm -f irtest $(OBJS)
	rm -f *.bin *.grc
	rm -f timestamp-grc timestamp-bin

distclean: clean
	rm -f irtest.prc

⌨️ 快捷键说明

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