📄 makefile
字号:
## Makefile for the linux s390-specific parts of the memory manager.## Note! Dependencies are done automagically by 'make dep', which also# removes any old dependencies. DON'T put your own dependencies here# unless it's something special (ie not a .c file).## Note 2! The CFLAGS definition is now in the main makefile...OBJCOPY = $(CROSS_COMPILE)objcopyO_TARGET := O_OBJS := include $(TOPDIR)/Rules.make.S.o: $(CC) $(AFLAGS) -traditional -c $< -o $*.o%.lnk: %.o $(LD) -Ttext 0x0 -o $@ $<%.boot: %.lnk $(OBJCOPY) -O binary $< $@image: $(CONFIGURE) $(TOPDIR)/vmlinux \ iplfba.boot ipleckd.boot ipldump.boot $(OBJCOPY) -O binary $(TOPDIR)/vmlinux image $(NM) $(TOPDIR)/vmlinux | grep -v '\(compiled\)\|\( [aU] \)\|\(\.\)\|\(LASH[RL]DI\)' | sort > $(TOPDIR)/System.maplisting: ../../../vmlinux $(OBJDUMP) --disassemble --disassemble-all --disassemble-zeroes --reloc $(TOPDIR)/vmlinux > listingdep:clean: rm -f image listing iplfba.boot ipleckd.boot ipldump.boot
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -