📄 makefile
字号:
## Makefile for the kernel pcmcia subsystem (c/o David Hinds)## 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 definitions are now inherited from the# parent makes..O_TARGET := pcmcia.oexport-objs := ds.o cs.o yenta.o pci_socket.olist-multi := pcmcia_core.o yenta_socket.oyenta_socket-objs := pci_socket.o yenta.opcmcia_core-objs := cistpl.o rsrc_mgr.o bulkmem.o cs.oifeq ($(CONFIG_CARDBUS),y) pcmcia_core-objs += cardbus.oendififeq ($(CONFIG_PCMCIA),y) obj-y := cistpl.o rsrc_mgr.o bulkmem.o ds.o cs.o ifeq ($(CONFIG_CARDBUS),y) obj-y += cardbus.o yenta.o pci_socket.o endif ifeq ($(CONFIG_I82365),y) obj-y += i82365.o endif ifeq ($(CONFIG_I82092),y) obj-y += i82092.o endif ifeq ($(CONFIG_TCIC),y) obj-y += tcic.o endif ifeq ($(CONFIG_HD64465_PCMCIA),y) obj-y += hd64465_ss.o endifelse ifeq ($(CONFIG_PCMCIA),m) obj-m := pcmcia_core.o ds.o ifeq ($(CONFIG_I82365),y) obj-m += i82365.o endif ifeq ($(CONFIG_I82092),y) obj-m += i82092.o endif ifeq ($(CONFIG_TCIC),y) obj-m += tcic.o endif ifeq ($(CONFIG_HD64465_PCMCIA),m) obj-m += hd64465_ss.o endif ifeq ($(CONFIG_CARDBUS),y) obj-m += yenta_socket.o endif endifendifobj-$(CONFIG_PCMCIA_CLPS6700) += clps6700.oobj-$(CONFIG_PCMCIA_SA1100) += sa1100_cs.osa1100_cs-objs-y := sa1100_generic.osa1100_cs-objs-$(CONFIG_SA1100_ADSBITSY) += sa1100_adsbitsy.o sa1111_generic.osa1100_cs-objs-$(CONFIG_SA1100_ASSABET) += sa1100_assabet.osa1100_cs-objs-$(CONFIG_SA1100_G200) += sa1100_g200.osa1100_cs-objs-$(CONFIG_ASSABET_NEPONSET) += sa1100_neponset.o sa1111_generic.osa1100_cs-objs-$(CONFIG_SA1100_BADGE4) += sa1100_badge4.o sa1111_generic.osa1100_cs-objs-$(CONFIG_SA1100_CONSUS) += sa1100_neponset.o sa1111_generic.osa1100_cs-objs-$(CONFIG_SA1100_CERF) += sa1100_cerf.osa1100_cs-objs-$(CONFIG_SA1100_FLEXANET) += sa1100_flexanet.osa1100_cs-objs-$(CONFIG_SA1100_FREEBIRD) += sa1100_freebird.osa1100_cs-objs-$(CONFIG_SA1100_GRAPHICSMASTER) += sa1100_graphicsmaster.o sa1111_generic.osa1100_cs-objs-$(CONFIG_SA1100_GRAPHICSCLIENT) += sa1100_graphicsclient.osa1100_cs-objs-$(CONFIG_SA1100_H3600) += sa1100_h3600.osa1100_cs-objs-$(CONFIG_SA1100_JORNADA720) += sa1100_jornada720.o sa1111_generic.osa1100_cs-objs-$(CONFIG_SA1100_PANGOLIN) += sa1100_pangolin.osa1100_cs-objs-$(CONFIG_SA1100_PFS168) += sa1100_pfs168.o sa1111_generic.osa1100_cs-objs-$(CONFIG_SA1100_SHANNON) += sa1100_shannon.osa1100_cs-objs-$(CONFIG_SA1100_SIMPAD) += sa1100_simpad.osa1100_cs-objs-$(CONFIG_SA1100_STORK) += sa1100_stork.osa1100_cs-objs-$(CONFIG_SA1100_XP860) += sa1100_xp860.o sa1111_generic.osa1100_cs-objs-$(CONFIG_SA1100_YOPY) += sa1100_yopy.osubdir-$(CONFIG_PCMCIA_PXA) += pxaobj-$(CONFIG_PCMCIA_PXA) += pxa/pxa_cs.oinclude $(TOPDIR)/Rules.makepcmcia_core.o: $(pcmcia_core-objs) $(LD) $(LD_RFLAG) -r -o $@ $(pcmcia_core-objs)sa1100_cs.o: $(sa1100_cs-objs-y) $(LD) -r -o $@ $(sa1100_cs-objs-y)yenta_socket.o: $(yenta_socket-objs) $(LD) $(LD_RFLAG) -r -o $@ $(yenta_socket-objs)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -