makefile

来自「microwindows移植到S3C44B0的源码」· 代码 · 共 32 行

TXT
32
字号
## Makefile for the Solaris binary emulation.## 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...USE_STANDARD_AS_RULE := trueEXTRA_AFLAGS := -ansiifeq ($(CONFIG_SOLARIS_EMUL),m)  EXTRA_AFLAGS += $(MODFLAGS)endiflist-multi := solaris.osolaris-objs := entry64.o fs.o misc.o signal.o systbl.o socket.o \		ioctl.o ipc.o socksys.o timod.oobj-$(CONFIG_SOLARIS_EMUL) += solaris.oifneq ($(CONFIG_SOLARIS_EMUL),y)do_it_all:endifsolaris.o: $(solaris-objs)	$(LD) -r -o $@ $(solaris-objs)include $(TOPDIR)/Rules.make

⌨️ 快捷键说明

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