makefile
来自「LINUX设备驱动程序第二版配套源码 ldd2-samples-1.0.1」· 代码 · 共 24 行
TXT
24 行
# This Makefile has been simplified as much as possible, by putting all# generic material, independent of this specific directory, into# ../Rules.make. Read that file for detailsTOPDIR := $(shell cd ..; pwd)include $(TOPDIR)/Rules.makeCFLAGS += -I.. -OOBJS = skull.oall: $(OBJS)skull.o: skull_init.o skull_clean.o $(LD) -r $^ -o $@install: install -d $(INSTALLDIR) install -c $(OBJS) $(INSTALLDIR)clean: rm -f *.o *~ core
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?