Commit be172bc7 authored by Linus Torvalds's avatar Linus Torvalds

Manual merge

parents 08b0fb25 87fafc51
...@@ -124,10 +124,10 @@ DRIVERS-y += drivers/base/base.o \ ...@@ -124,10 +124,10 @@ DRIVERS-y += drivers/base/base.o \
drivers/misc/misc.o \ drivers/misc/misc.o \
drivers/net/net.o \ drivers/net/net.o \
drivers/media/media.o drivers/media/media.o
DRIVERS-$(CONFIG_NUBUS) += drivers/nubus/nubus.a DRIVERS-$(CONFIG_NUBUS) += drivers/nubus/built-in.o
DRIVERS-$(CONFIG_ATM) += drivers/atm/atm.o DRIVERS-$(CONFIG_ATM) += drivers/atm/atm.o
DRIVERS-$(CONFIG_IDE) += drivers/ide/idedriver.o DRIVERS-$(CONFIG_IDE) += drivers/ide/idedriver.o
DRIVERS-$(CONFIG_FC4) += drivers/fc4/fc4.a DRIVERS-$(CONFIG_FC4) += drivers/fc4/built-in.o
DRIVERS-$(CONFIG_SCSI) += drivers/scsi/scsidrv.o DRIVERS-$(CONFIG_SCSI) += drivers/scsi/scsidrv.o
DRIVERS-$(CONFIG_FUSION) += drivers/message/message.o DRIVERS-$(CONFIG_FUSION) += drivers/message/message.o
DRIVERS-$(CONFIG_IEEE1394) += drivers/ieee1394/ieee1394drv.o DRIVERS-$(CONFIG_IEEE1394) += drivers/ieee1394/ieee1394drv.o
...@@ -139,16 +139,16 @@ endif ...@@ -139,16 +139,16 @@ endif
DRIVERS-$(CONFIG_SOUND) += sound/sound.o DRIVERS-$(CONFIG_SOUND) += sound/sound.o
DRIVERS-$(CONFIG_MTD) += drivers/mtd/mtdlink.o DRIVERS-$(CONFIG_MTD) += drivers/mtd/mtdlink.o
DRIVERS-$(CONFIG_PCMCIA) += drivers/pcmcia/pcmcia.o DRIVERS-$(CONFIG_PCMCIA) += drivers/pcmcia/pcmcia.o
DRIVERS-$(CONFIG_DIO) += drivers/dio/dio.a DRIVERS-$(CONFIG_DIO) += drivers/dio/built-in.o
DRIVERS-$(CONFIG_SBUS) += drivers/sbus/sbus_all.o DRIVERS-$(CONFIG_SBUS) += drivers/sbus/sbus_all.o
DRIVERS-$(CONFIG_ZORRO) += drivers/zorro/driver.o DRIVERS-$(CONFIG_ZORRO) += drivers/zorro/driver.o
DRIVERS-$(CONFIG_ALL_PPC) += drivers/macintosh/macintosh.o DRIVERS-$(CONFIG_ALL_PPC) += drivers/macintosh/macintosh.o
DRIVERS-$(CONFIG_MAC) += drivers/macintosh/macintosh.o DRIVERS-$(CONFIG_MAC) += drivers/macintosh/macintosh.o
DRIVERS-$(CONFIG_PNP) += drivers/pnp/pnp.o DRIVERS-$(CONFIG_PNP) += drivers/pnp/pnp.o
DRIVERS-$(CONFIG_SGI_IP22) += drivers/sgi/sgi.a DRIVERS-$(CONFIG_SGI_IP22) += drivers/sgi/built-in.o
DRIVERS-$(CONFIG_VT) += drivers/video/video.o DRIVERS-$(CONFIG_VT) += drivers/video/video.o
DRIVERS-$(CONFIG_PARIDE) += drivers/block/paride/paride.a DRIVERS-$(CONFIG_PARIDE) += drivers/block/paride/built-in.o
DRIVERS-$(CONFIG_TC) += drivers/tc/tc.a DRIVERS-$(CONFIG_TC) += drivers/tc/built-in.o
DRIVERS-$(CONFIG_USB) += drivers/usb/usbdrv.o DRIVERS-$(CONFIG_USB) += drivers/usb/usbdrv.o
DRIVERS-$(CONFIG_INPUT) += drivers/input/inputdrv.o DRIVERS-$(CONFIG_INPUT) += drivers/input/inputdrv.o
DRIVERS-$(CONFIG_GAMEPORT) += drivers/input/gameport/gamedrv.o DRIVERS-$(CONFIG_GAMEPORT) += drivers/input/gameport/gamedrv.o
......
...@@ -144,14 +144,25 @@ cmd_as_o_S = $(CC) $(a_flags) -c -o $@ $< ...@@ -144,14 +144,25 @@ cmd_as_o_S = $(CC) $(a_flags) -c -o $@ $<
%.o: %.S dummy %.o: %.S dummy
$(call if_changed,cmd_as_o_S) $(call if_changed,cmd_as_o_S)
# --------------------------------------------------------------------------- # FIXME
%.lst: %.c %.lst: %.c
$(CC) $(c_flags) -g -c -o $*.o $< $(CC) $(c_flags) -g -c -o $*.o $<
$(TOPDIR)/scripts/makelst $* $(TOPDIR) $(OBJDUMP) $(TOPDIR)/scripts/makelst $* $(TOPDIR) $(OBJDUMP)
#
#
# # If a Makefile does define neither O_TARGET nor L_TARGET,
# use a standard O_TARGET named "built-in.o"
ifndef O_TARGET
ifndef L_TARGET
O_TARGET := built-in.o
endif
endif
# Build the compiled-in targets
# ---------------------------------------------------------------------------
all_targets: $(O_TARGET) $(L_TARGET) sub_dirs all_targets: $(O_TARGET) $(L_TARGET) sub_dirs
# To build objects in subdirs, we need to descend into the directories # To build objects in subdirs, we need to descend into the directories
......
...@@ -2,8 +2,6 @@ ...@@ -2,8 +2,6 @@
# Makefile for the FPU instruction emulation. # Makefile for the FPU instruction emulation.
# #
O_TARGET := built-in.o
obj-$(CONFIG_MATHEMU) += math-emu.o obj-$(CONFIG_MATHEMU) += math-emu.o
math-emu-objs := math.o qrnnd.o math-emu-objs := math.o qrnnd.o
......
...@@ -3,13 +3,6 @@ ...@@ -3,13 +3,6 @@
# Makefile for the Acorn ethercard network device drivers # Makefile for the Acorn ethercard network device drivers
# #
O_TARGET := built-in.o
obj-y :=
obj-m :=
obj-n :=
obj- :=
obj-$(CONFIG_ARM_ETHERH) += etherh.o obj-$(CONFIG_ARM_ETHERH) += etherh.o
obj-$(CONFIG_ARM_ETHER3) += ether3.o obj-$(CONFIG_ARM_ETHER3) += ether3.o
obj-$(CONFIG_ARM_ETHER1) += ether1.o obj-$(CONFIG_ARM_ETHER1) += ether1.o
......
...@@ -2,13 +2,6 @@ ...@@ -2,13 +2,6 @@
# Makefile for drivers/acorn/scsi # Makefile for drivers/acorn/scsi
# #
O_TARGET := acorn-scsi.o
obj-y :=
obj-m :=
obj-n :=
obj- :=
export-objs := fas216.o queue.o msgqueue.o export-objs := fas216.o queue.o msgqueue.o
acornscsi_mod-objs := acornscsi.o acornscsi-io.o acornscsi_mod-objs := acornscsi.o acornscsi-io.o
......
...@@ -21,35 +21,29 @@ obj-y := acpi_ksyms.o ...@@ -21,35 +21,29 @@ obj-y := acpi_ksyms.o
# #
# ACPI Boot-Time Table Parsing # ACPI Boot-Time Table Parsing
# #
ifeq ($(CONFIG_ACPI_BOOT),y) obj-$(CONFIG_ACPI_BOOT) += acpi_tables.o
obj-y += acpi_tables.o
endif
# #
# ACPI Core Subsystem (Interpreter) # ACPI Core Subsystem (Interpreter)
# #
ifeq ($(CONFIG_ACPI_INTERPRETER),y) obj-$(CONFIG_ACPI_INTERPRETER) += acpi_osl.o acpi_utils.o \
obj-y += acpi_osl.o acpi_utils.o dispatcher/ events/ executer/ hardware/ \
subdir-y += dispatcher events executer hardware namespace parser \ namespace/ parser/ resources/ tables/ \
resources tables utilities utilities/
obj-y += $(foreach dir,$(subdir-y),$(dir)/$(dir).o)
endif
# #
# ACPI Bus and Device Drivers # ACPI Bus and Device Drivers
# #
ifeq ($(CONFIG_ACPI_BUS),y) obj-$(CONFIG_ACPI_BUS) += acpi_bus.o
obj-y += acpi_bus.o obj-$(CONFIG_ACPI_AC) += acpi_ac.o
obj-$(CONFIG_ACPI_AC) += acpi_ac.o obj-$(CONFIG_ACPI_BATTERY) += acpi_battery.o
obj-$(CONFIG_ACPI_BATTERY) += acpi_battery.o obj-$(CONFIG_ACPI_BUTTON) += acpi_button.o
obj-$(CONFIG_ACPI_BUTTON) += acpi_button.o obj-$(CONFIG_ACPI_EC) += acpi_ec.o
obj-$(CONFIG_ACPI_EC) += acpi_ec.o obj-$(CONFIG_ACPI_FAN) += acpi_fan.o
obj-$(CONFIG_ACPI_FAN) += acpi_fan.o obj-$(CONFIG_ACPI_PCI) += acpi_pci_root.o acpi_pci_link.o
obj-$(CONFIG_ACPI_PCI) += acpi_pci_root.o acpi_pci_link.o obj-$(CONFIG_ACPI_POWER) += acpi_power.o
obj-$(CONFIG_ACPI_POWER) += acpi_power.o obj-$(CONFIG_ACPI_PROCESSOR) += acpi_processor.o
obj-$(CONFIG_ACPI_PROCESSOR) += acpi_processor.o obj-$(CONFIG_ACPI_THERMAL) += acpi_thermal.o
obj-$(CONFIG_ACPI_THERMAL) += acpi_thermal.o obj-$(CONFIG_ACPI_SYSTEM) += acpi_system.o
obj-$(CONFIG_ACPI_SYSTEM) += acpi_system.o
endif
include $(TOPDIR)/Rules.make include $(TOPDIR)/Rules.make
...@@ -2,8 +2,6 @@ ...@@ -2,8 +2,6 @@
# Makefile for all Linux ACPI interpreter subdirectories # Makefile for all Linux ACPI interpreter subdirectories
# #
O_TARGET := $(notdir $(CURDIR)).o
obj-$(CONFIG_ACPI_INTERPRETER) := $(patsubst %.c,%.o,$(wildcard *.c)) obj-$(CONFIG_ACPI_INTERPRETER) := $(patsubst %.c,%.o,$(wildcard *.c))
EXTRA_CFLAGS += $(ACPI_CFLAGS) EXTRA_CFLAGS += $(ACPI_CFLAGS)
......
...@@ -2,8 +2,6 @@ ...@@ -2,8 +2,6 @@
# Makefile for all Linux ACPI interpreter subdirectories # Makefile for all Linux ACPI interpreter subdirectories
# #
O_TARGET := $(notdir $(CURDIR)).o
obj-$(CONFIG_ACPI_INTERPRETER) := $(patsubst %.c,%.o,$(wildcard *.c)) obj-$(CONFIG_ACPI_INTERPRETER) := $(patsubst %.c,%.o,$(wildcard *.c))
EXTRA_CFLAGS += $(ACPI_CFLAGS) EXTRA_CFLAGS += $(ACPI_CFLAGS)
......
...@@ -2,8 +2,6 @@ ...@@ -2,8 +2,6 @@
# Makefile for all Linux ACPI interpreter subdirectories # Makefile for all Linux ACPI interpreter subdirectories
# #
O_TARGET := $(notdir $(CURDIR)).o
obj-$(CONFIG_ACPI_INTERPRETER) := $(patsubst %.c,%.o,$(wildcard *.c)) obj-$(CONFIG_ACPI_INTERPRETER) := $(patsubst %.c,%.o,$(wildcard *.c))
EXTRA_CFLAGS += $(ACPI_CFLAGS) EXTRA_CFLAGS += $(ACPI_CFLAGS)
......
...@@ -2,8 +2,6 @@ ...@@ -2,8 +2,6 @@
# Makefile for all Linux ACPI interpreter subdirectories # Makefile for all Linux ACPI interpreter subdirectories
# #
O_TARGET := $(notdir $(CURDIR)).o
obj-$(CONFIG_ACPI_INTERPRETER) := $(patsubst %.c,%.o,$(wildcard *.c)) obj-$(CONFIG_ACPI_INTERPRETER) := $(patsubst %.c,%.o,$(wildcard *.c))
EXTRA_CFLAGS += $(ACPI_CFLAGS) EXTRA_CFLAGS += $(ACPI_CFLAGS)
......
...@@ -2,8 +2,6 @@ ...@@ -2,8 +2,6 @@
# Makefile for all Linux ACPI interpreter subdirectories # Makefile for all Linux ACPI interpreter subdirectories
# #
O_TARGET := $(notdir $(CURDIR)).o
obj-$(CONFIG_ACPI_INTERPRETER) := $(patsubst %.c,%.o,$(wildcard *.c)) obj-$(CONFIG_ACPI_INTERPRETER) := $(patsubst %.c,%.o,$(wildcard *.c))
EXTRA_CFLAGS += $(ACPI_CFLAGS) EXTRA_CFLAGS += $(ACPI_CFLAGS)
......
...@@ -2,8 +2,6 @@ ...@@ -2,8 +2,6 @@
# Makefile for all Linux ACPI interpreter subdirectories # Makefile for all Linux ACPI interpreter subdirectories
# #
O_TARGET := $(notdir $(CURDIR)).o
obj-$(CONFIG_ACPI_INTERPRETER) := $(patsubst %.c,%.o,$(wildcard *.c)) obj-$(CONFIG_ACPI_INTERPRETER) := $(patsubst %.c,%.o,$(wildcard *.c))
EXTRA_CFLAGS += $(ACPI_CFLAGS) EXTRA_CFLAGS += $(ACPI_CFLAGS)
......
...@@ -2,8 +2,6 @@ ...@@ -2,8 +2,6 @@
# Makefile for all Linux ACPI interpreter subdirectories # Makefile for all Linux ACPI interpreter subdirectories
# #
O_TARGET := $(notdir $(CURDIR)).o
obj-$(CONFIG_ACPI_INTERPRETER) := $(patsubst %.c,%.o,$(wildcard *.c)) obj-$(CONFIG_ACPI_INTERPRETER) := $(patsubst %.c,%.o,$(wildcard *.c))
EXTRA_CFLAGS += $(ACPI_CFLAGS) EXTRA_CFLAGS += $(ACPI_CFLAGS)
......
...@@ -2,8 +2,6 @@ ...@@ -2,8 +2,6 @@
# Makefile for all Linux ACPI interpreter subdirectories # Makefile for all Linux ACPI interpreter subdirectories
# #
O_TARGET := $(notdir $(CURDIR)).o
obj-$(CONFIG_ACPI_INTERPRETER) := $(patsubst %.c,%.o,$(wildcard *.c)) obj-$(CONFIG_ACPI_INTERPRETER) := $(patsubst %.c,%.o,$(wildcard *.c))
EXTRA_CFLAGS += $(ACPI_CFLAGS) EXTRA_CFLAGS += $(ACPI_CFLAGS)
......
...@@ -2,8 +2,6 @@ ...@@ -2,8 +2,6 @@
# Makefile for all Linux ACPI interpreter subdirectories # Makefile for all Linux ACPI interpreter subdirectories
# #
O_TARGET := $(notdir $(CURDIR)).o
obj-$(CONFIG_ACPI_INTERPRETER) := $(patsubst %.c,%.o,$(wildcard *.c)) obj-$(CONFIG_ACPI_INTERPRETER) := $(patsubst %.c,%.o,$(wildcard *.c))
EXTRA_CFLAGS += $(ACPI_CFLAGS) EXTRA_CFLAGS += $(ACPI_CFLAGS)
......
...@@ -2,8 +2,6 @@ ...@@ -2,8 +2,6 @@
# Makefile for all Linux ACPI interpreter subdirectories # Makefile for all Linux ACPI interpreter subdirectories
# #
O_TARGET := $(notdir $(CURDIR)).o
obj-$(CONFIG_ACPI_INTERPRETER) := $(patsubst %.c,%.o,$(wildcard *.c)) obj-$(CONFIG_ACPI_INTERPRETER) := $(patsubst %.c,%.o,$(wildcard *.c))
EXTRA_CFLAGS += $(ACPI_CFLAGS) EXTRA_CFLAGS += $(ACPI_CFLAGS)
......
...@@ -5,8 +5,6 @@ ...@@ -5,8 +5,6 @@
# Rewritten to use lists instead of if-statements. # Rewritten to use lists instead of if-statements.
# #
L_TARGET := paride.a
export-objs := paride.o bpck6.o export-objs := paride.o bpck6.o
obj-$(CONFIG_PARIDE) += paride.o obj-$(CONFIG_PARIDE) += paride.o
......
...@@ -182,14 +182,8 @@ obj-$(CONFIG_TOSHIBA) += toshiba.o ...@@ -182,14 +182,8 @@ obj-$(CONFIG_TOSHIBA) += toshiba.o
obj-$(CONFIG_I8K) += i8k.o obj-$(CONFIG_I8K) += i8k.o
obj-$(CONFIG_DS1620) += ds1620.o obj-$(CONFIG_DS1620) += ds1620.o
obj-$(CONFIG_INTEL_RNG) += i810_rng.o obj-$(CONFIG_INTEL_RNG) += i810_rng.o
obj-$(CONFIG_QIC02_TAPE) += tpqic02.o obj-$(CONFIG_QIC02_TAPE) += tpqic02.o
obj-$(CONFIG_FTAPE) += ftape/
subdir-$(CONFIG_FTAPE) += ftape
ifeq ($(CONFIG_FTAPE),y)
obj-y += ftape/ftape.o
endif
obj-$(CONFIG_H8) += h8.o obj-$(CONFIG_H8) += h8.o
obj-$(CONFIG_PPDEV) += ppdev.o obj-$(CONFIG_PPDEV) += ppdev.o
obj-$(CONFIG_DZ) += dz.o obj-$(CONFIG_DZ) += dz.o
...@@ -216,23 +210,10 @@ obj-$(CONFIG_MACHZ_WDT) += machzwd.o ...@@ -216,23 +210,10 @@ obj-$(CONFIG_MACHZ_WDT) += machzwd.o
obj-$(CONFIG_SH_WDT) += shwdt.o obj-$(CONFIG_SH_WDT) += shwdt.o
obj-$(CONFIG_EUROTECH_WDT) += eurotechwdt.o obj-$(CONFIG_EUROTECH_WDT) += eurotechwdt.o
obj-$(CONFIG_SOFT_WATCHDOG) += softdog.o obj-$(CONFIG_SOFT_WATCHDOG) += softdog.o
obj-$(CONFIG_MWAVE) += mwave/ obj-$(CONFIG_MWAVE) += mwave/
obj-$(CONFIG_AGP) += agp/
subdir-$(CONFIG_AGP) += agp obj-$(CONFIG_DRM) += drm/
ifeq ($(CONFIG_AGP),y) obj-$(CONFIG_PCMCIA) += pcmcia/
obj-y += agp/agp.o
endif
subdir-$(CONFIG_DRM) += drm
ifeq ($(CONFIG_DRM),y)
obj-y += drm/drm.o
endif
subdir-$(CONFIG_PCMCIA) += pcmcia
ifeq ($(CONFIG_PCMCIA),y)
obj-y += pcmcia/pcmcia_char.o
endif
include $(TOPDIR)/Rules.make include $(TOPDIR)/Rules.make
......
...@@ -3,8 +3,6 @@ ...@@ -3,8 +3,6 @@
# space ioctl interface to use agp memory. It also adds a kernel interface # space ioctl interface to use agp memory. It also adds a kernel interface
# that other drivers could use to manipulate agp memory. # that other drivers could use to manipulate agp memory.
O_TARGET := agp.o
export-objs := agpgart_be.o export-objs := agpgart_be.o
agpgart-objs := agpgart_fe.o agpgart_be.o agpgart-objs := agpgart_fe.o agpgart_be.o
......
...@@ -2,8 +2,6 @@ ...@@ -2,8 +2,6 @@
# Makefile for the drm device driver. This driver provides support for the # Makefile for the drm device driver. This driver provides support for the
# Direct Rendering Infrastructure (DRI) in XFree86 4.1.0 and higher. # Direct Rendering Infrastructure (DRI) in XFree86 4.1.0 and higher.
O_TARGET := drm.o
gamma-objs := gamma_drv.o gamma_dma.o gamma-objs := gamma_drv.o gamma_dma.o
tdfx-objs := tdfx_drv.o tdfx-objs := tdfx_drv.o
r128-objs := r128_drv.o r128_cce.o r128_state.o r128-objs := r128_drv.o r128_cce.o r128_state.o
......
...@@ -23,8 +23,6 @@ ...@@ -23,8 +23,6 @@
# Linux. # Linux.
# #
O_TARGET := ftape.o
obj-$(CONFIG_FTAPE) += lowlevel/ obj-$(CONFIG_FTAPE) += lowlevel/
obj-$(CONFIG_ZFTAPE) += zftape/ obj-$(CONFIG_ZFTAPE) += zftape/
obj-$(CONFIG_ZFT_COMPRESSOR) += compressor/ obj-$(CONFIG_ZFT_COMPRESSOR) += compressor/
......
...@@ -24,8 +24,6 @@ ...@@ -24,8 +24,6 @@
# Linux. # Linux.
# #
O_TARGET := built-in.o
obj-$(CONFIG_ZFT_COMPRESSOR) += zft-compressor.o obj-$(CONFIG_ZFT_COMPRESSOR) += zft-compressor.o
zft-compressor-objs := zftape-compress.o lzrw3.o zft-compressor-objs := zftape-compress.o lzrw3.o
......
...@@ -23,8 +23,6 @@ ...@@ -23,8 +23,6 @@
# driver for Linux. # driver for Linux.
# #
O_TARGET := built-in.o
export-objs := ftape_syms.o export-objs := ftape_syms.o
obj-$(CONFIG_FTAPE) += ftape.o obj-$(CONFIG_FTAPE) += ftape.o
......
...@@ -27,8 +27,6 @@ ...@@ -27,8 +27,6 @@
# ZFT_OBSOLETE - enable the MTIOC_ZFTAPE_GETBLKSZ ioctl. You should # ZFT_OBSOLETE - enable the MTIOC_ZFTAPE_GETBLKSZ ioctl. You should
# leave this enabled for compatibility with taper. # leave this enabled for compatibility with taper.
O_TARGET := built-in.o
export-objs := zftape_syms.o export-objs := zftape_syms.o
obj-$(CONFIG_ZFTAPE) += zftape.o obj-$(CONFIG_ZFTAPE) += zftape.o
......
...@@ -4,8 +4,6 @@ ...@@ -4,8 +4,6 @@
# See the README file in this directory for more info. <paulsch@us.ibm.com> # See the README file in this directory for more info. <paulsch@us.ibm.com>
# #
O_TARGET := built-in.o
obj-$(CONFIG_MWAVE) += mwave.o obj-$(CONFIG_MWAVE) += mwave.o
mwave-objs := mwavedd.o smapi.o tp3780i.o 3780i.o mwave-objs := mwavedd.o smapi.o tp3780i.o 3780i.o
......
...@@ -4,8 +4,6 @@ ...@@ -4,8 +4,6 @@
# Makefile for the Linux PCMCIA char device drivers. # Makefile for the Linux PCMCIA char device drivers.
# #
O_TARGET := pcmcia_char.o
obj-$(CONFIG_PCMCIA_SERIAL_CS) += serial_cs.o obj-$(CONFIG_PCMCIA_SERIAL_CS) += serial_cs.o
obj-$(CONFIG_SYNCLINK_CS) += synclink_cs.o obj-$(CONFIG_SYNCLINK_CS) += synclink_cs.o
......
...@@ -6,8 +6,6 @@ ...@@ -6,8 +6,6 @@
# This file is GPL. See other files for the full Blurb. I'm lazy today. # This file is GPL. See other files for the full Blurb. I'm lazy today.
# #
O_TARGET := built-in.o
obj-$(CONFIG_RIO) += rio.o obj-$(CONFIG_RIO) += rio.o
rio-objs := rio_linux.o rioinit.o rioboot.o riocmd.o rioctrl.o riointr.o \ rio-objs := rio_linux.o rioinit.o rioboot.o riocmd.o rioctrl.o riointr.o \
......
# #
# Makefile for the linux kernel. # Makefile for the linux kernel.
# #
# 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 in the main makefile...
#
# NB: cribbed from the drivers/sbus/Makefile -- PMM
SUB_DIRS :=
MOD_SUB_DIRS := $(SUB_DIRS)
ALL_SUB_DIRS := $(SUB_DIRS)
L_OBJS := dio.o obj-y := dio.o
L_TARGET := dio.a
include $(TOPDIR)/Rules.make include $(TOPDIR)/Rules.make
...@@ -2,8 +2,6 @@ ...@@ -2,8 +2,6 @@
# Makefile for the Linux Fibre Channel device drivers. # Makefile for the Linux Fibre Channel device drivers.
# #
L_TARGET := fc4.a
export-objs := fc_syms.o export-objs := fc_syms.o
fc4-objs := fc.o fc_syms.o fc4-objs := fc.o fc_syms.o
......
...@@ -19,11 +19,7 @@ obj-$(CONFIG_INPUT_MOUSEDEV) += mousedev.o ...@@ -19,11 +19,7 @@ obj-$(CONFIG_INPUT_MOUSEDEV) += mousedev.o
obj-$(CONFIG_INPUT_JOYDEV) += joydev.o obj-$(CONFIG_INPUT_JOYDEV) += joydev.o
obj-$(CONFIG_INPUT_EVDEV) += evdev.o obj-$(CONFIG_INPUT_EVDEV) += evdev.o
subdir-$(CONFIG_INPUT_JOYSTICK) += joystick obj-$(CONFIG_INPUT_JOYSTICK) += joystick/
ifeq ($(CONFIG_INPUT_JOYSTICK),y)
obj-y += joystick/joydrv.o
endif
# The global Rules.make. # The global Rules.make.
......
...@@ -2,10 +2,6 @@ ...@@ -2,10 +2,6 @@
# Makefile for the input core drivers. # Makefile for the input core drivers.
# #
# The target object and module list name.
O_TARGET := joydrv.o
# I-Force may need both USB and RS-232 # I-Force may need both USB and RS-232
CONFIG_JOYSTICK_IFORCE := n CONFIG_JOYSTICK_IFORCE := n
......
# Makefile for the act2000 ISDN device driver # Makefile for the act2000 ISDN device driver
# The target object and module list name. # Each configuration option enables a list of files.
O_TARGET := built-in.o obj-$(CONFIG_ISDN_DRV_ACT2000) += act2000.o
# Multipart objects. # Multipart objects.
act2000-objs := module.o capi.o act2000_isa.o act2000-objs := module.o capi.o act2000_isa.o
# Each configuration option enables a list of files.
obj-$(CONFIG_ISDN_DRV_ACT2000) += act2000.o
include $(TOPDIR)/Rules.make include $(TOPDIR)/Rules.make
# Makefile for the CAPI subsystem. # Makefile for the CAPI subsystem.
# The target object and module list name.
O_TARGET := built-in.o
# Objects that export symbols. # Objects that export symbols.
export-objs := kcapi.o capiutil.o capilib.o capifs.o export-objs := kcapi.o capiutil.o capilib.o capifs.o
# Multipart objects.
kernelcapi-objs := kcapi.o capiutil.o capilib.o
# Ordering constraints: kernelcapi.o first # Ordering constraints: kernelcapi.o first
# Each configuration option enables a list of files. # Each configuration option enables a list of files.
...@@ -21,6 +13,10 @@ obj-$(CONFIG_ISDN_CAPI_CAPI20) += capi.o ...@@ -21,6 +13,10 @@ obj-$(CONFIG_ISDN_CAPI_CAPI20) += capi.o
obj-$(CONFIG_ISDN_CAPI_CAPIDRV) += capidrv.o obj-$(CONFIG_ISDN_CAPI_CAPIDRV) += capidrv.o
obj-$(CONFIG_ISDN_CAPI_CAPIFS) += capifs.o obj-$(CONFIG_ISDN_CAPI_CAPIFS) += capifs.o
# Multipart objects.
kernelcapi-objs := kcapi.o capiutil.o capilib.o
# The global Rules.make. # The global Rules.make.
include $(TOPDIR)/Rules.make include $(TOPDIR)/Rules.make
#
# Makefile for the dss1_divert ISDN module # Makefile for the dss1_divert ISDN module
#
# The target object and module list name. # Each configuration option enables a list of files.
O_TARGET := built-in.o obj-$(CONFIG_ISDN_DIVERSION) += dss1_divert.o
# Multipart objects. # Multipart objects.
dss1_divert-objs := isdn_divert.o divert_procfs.o divert_init.o dss1_divert-objs := isdn_divert.o divert_procfs.o divert_init.o
# Each configuration option enables a list of files.
obj-$(CONFIG_ISDN_DIVERSION) += dss1_divert.o
include $(TOPDIR)/Rules.make include $(TOPDIR)/Rules.make
......
# Makefile for the eicon ISDN device driver # Makefile for the eicon ISDN device driver
# The target object and module list name.
O_TARGET := built-in.o
# Objects that export symbols. # Objects that export symbols.
export-objs := Divas_mod.o eicon_mod.o export-objs := Divas_mod.o eicon_mod.o
# Each configuration option enables a list of files.
obj-$(CONFIG_ISDN_DRV_EICON_OLD) += eicon.o
obj-$(CONFIG_ISDN_DRV_EICON_DIVAS) += divas.o
# Multipart objects. # Multipart objects.
eicon-objs := eicon_mod.o eicon_isa.o eicon_pci.o eicon_idi.o \ eicon-objs := eicon_mod.o eicon_isa.o eicon_pci.o eicon_idi.o \
...@@ -23,9 +24,4 @@ eicon-objs-$(CONFIG_ISDN_DRV_EICON_PCI) += common.o idi.o bri.o pri.o log.o \ ...@@ -23,9 +24,4 @@ eicon-objs-$(CONFIG_ISDN_DRV_EICON_PCI) += common.o idi.o bri.o pri.o log.o \
eicon-objs += $(eicon-objs-y) eicon-objs += $(eicon-objs-y)
# Each configuration option enables a list of files.
obj-$(CONFIG_ISDN_DRV_EICON_OLD) += eicon.o
obj-$(CONFIG_ISDN_DRV_EICON_DIVAS) += divas.o
include $(TOPDIR)/Rules.make include $(TOPDIR)/Rules.make
# Makefile for the CAPI hardware drivers # Makefile for the CAPI hardware drivers
# The target object and module list name.
O_TARGET := built-in.o
# Object files in subdirectories # Object files in subdirectories
mod-subdirs := avm mod-subdirs := avm
......
# Makefile for the AVM ISDN device drivers # Makefile for the AVM ISDN device drivers
# The target object and module list name.
O_TARGET := built-in.o
# Objects that export symbols. # Objects that export symbols.
export-objs := b1dma.o b1pcmcia.o b1.o export-objs := b1dma.o b1pcmcia.o b1.o
......
# Makefile for the hisax ISDN device driver # Makefile for the hisax ISDN device driver
# The target object and module list name.
O_TARGET := built-in.o
# Define maximum number of cards # Define maximum number of cards
EXTRA_CFLAGS += -DHISAX_MAX_CARDS=$(CONFIG_HISAX_MAX_CARDS) EXTRA_CFLAGS += -DHISAX_MAX_CARDS=$(CONFIG_HISAX_MAX_CARDS)
...@@ -12,12 +8,22 @@ EXTRA_CFLAGS += -DHISAX_MAX_CARDS=$(CONFIG_HISAX_MAX_CARDS) ...@@ -12,12 +8,22 @@ EXTRA_CFLAGS += -DHISAX_MAX_CARDS=$(CONFIG_HISAX_MAX_CARDS)
export-objs := config.o fsm.o hisax_isac.o hisax_hscx.o export-objs := config.o fsm.o hisax_isac.o hisax_hscx.o
# Each configuration option enables a list of files.
obj-$(CONFIG_ISDN_DRV_HISAX) += hisax.o
obj-$(CONFIG_HISAX_SEDLBAUER_CS) += sedlbauer_cs.o
obj-$(CONFIG_HISAX_ELSA_CS) += elsa_cs.o
obj-$(CONFIG_HISAX_ST5481) += hisax_st5481.o
obj-$(CONFIG_HISAX_FRITZ_PCIPNP) += hisax_isac.o hisax_fcpcipnp.o
obj-$(CONFIG_HISAX_FRITZ_CLASSIC) += hisax_isac.o hisax_hscx.o hisax_fcclassic.o
obj-$(CONFIG_HISAX_FRITZ_PCIPNP) += hisax_hfcpci.o
# Multipart objects. # Multipart objects.
hisax-objs := config.o isdnl1.o tei.o isdnl2.o isdnl3.o \
lmgr.o q931.o callc.o fsm.o cert.o
hisax_st5481-objs := st5481_init.o st5481_usb.o st5481_d.o st5481_b.o \ hisax_st5481-objs := st5481_init.o st5481_usb.o st5481_d.o st5481_b.o \
st5481_hdlc.o st5481_hdlc.o
hisax-objs := config.o isdnl1.o tei.o isdnl2.o isdnl3.o \
lmgr.o q931.o callc.o fsm.o cert.o
# Optional parts of multipart objects. # Optional parts of multipart objects.
hisax-objs-$(CONFIG_HISAX_EURO) += l3dss1.o hisax-objs-$(CONFIG_HISAX_EURO) += l3dss1.o
...@@ -55,16 +61,6 @@ hisax-objs-$(CONFIG_HISAX_W6692) += w6692.o ...@@ -55,16 +61,6 @@ hisax-objs-$(CONFIG_HISAX_W6692) += w6692.o
hisax-objs += $(hisax-objs-y) hisax-objs += $(hisax-objs-y)
# Each configuration option enables a list of files.
obj-$(CONFIG_ISDN_DRV_HISAX) += hisax.o
obj-$(CONFIG_HISAX_SEDLBAUER_CS) += sedlbauer_cs.o
obj-$(CONFIG_HISAX_ELSA_CS) += elsa_cs.o
obj-$(CONFIG_HISAX_ST5481) += hisax_st5481.o
obj-$(CONFIG_HISAX_FRITZ_PCIPNP) += hisax_isac.o hisax_fcpcipnp.o
obj-$(CONFIG_HISAX_FRITZ_CLASSIC) += hisax_isac.o hisax_hscx.o hisax_fcclassic.o
obj-$(CONFIG_HISAX_FRITZ_PCIPNP) += hisax_hfcpci.o
CERT := $(shell md5sum -c md5sums.asc >> /dev/null;echo $$?) CERT := $(shell md5sum -c md5sums.asc >> /dev/null;echo $$?)
CFLAGS_cert.o := -DCERTIFICATION=$(CERT) CFLAGS_cert.o := -DCERTIFICATION=$(CERT)
......
# Makefile for the hysdn ISDN device driver # Makefile for the hysdn ISDN device driver
# The target object and module list name. # Each configuration option enables a list of files.
O_TARGET := built-in.o obj-$(CONFIG_HYSDN) += hysdn.o
# Multipart objects. # Multipart objects.
...@@ -15,8 +15,4 @@ hysdn-objs-$(CONFIG_HYSDN_CAPI) += hycapi.o ...@@ -15,8 +15,4 @@ hysdn-objs-$(CONFIG_HYSDN_CAPI) += hycapi.o
hysdn-objs += $(hysdn-objs-y) hysdn-objs += $(hysdn-objs-y)
# Each configuration option enables a list of files.
obj-$(CONFIG_HYSDN) += hysdn.o
include $(TOPDIR)/Rules.make include $(TOPDIR)/Rules.make
# Makefile for the kernel ISDN subsystem and device drivers. # Makefile for the kernel ISDN subsystem and device drivers.
# The target object and module list name.
O_TARGET := built-in.o
# Objects that export symbols. # Objects that export symbols.
export-objs := isdn_common.o export-objs := isdn_common.o
# Each configuration option enables a list of files.
obj-$(CONFIG_ISDN) += isdn.o
obj-$(CONFIG_ISDN_PPP_BSDCOMP) += isdn_bsdcomp.o
# Multipart objects. # Multipart objects.
isdn-objs := isdn_net.o isdn_tty.o isdn_v110.o isdn_common.o isdn-objs := isdn_net.o isdn_tty.o \
isdn_v110.o isdn_common.o
# Optional parts of multipart objects. # Optional parts of multipart objects.
...@@ -21,11 +23,4 @@ isdn-objs-$(CONFIG_ISDN_TTY_FAX) += isdn_ttyfax.o ...@@ -21,11 +23,4 @@ isdn-objs-$(CONFIG_ISDN_TTY_FAX) += isdn_ttyfax.o
isdn-objs += $(isdn-objs-y) isdn-objs += $(isdn-objs-y)
# Each configuration option enables a list of files.
obj-$(CONFIG_ISDN) += isdn.o
obj-$(CONFIG_ISDN_PPP_BSDCOMP) += isdn_bsdcomp.o
# The global Rules.make.
include $(TOPDIR)/Rules.make include $(TOPDIR)/Rules.make
# Makefile for the icn ISDN device driver # Makefile for the icn ISDN device driver
# The target object and module list name.
O_TARGET := built-in.o
# Each configuration option enables a list of files. # Each configuration option enables a list of files.
obj-$(CONFIG_ISDN_DRV_ICN) += icn.o obj-$(CONFIG_ISDN_DRV_ICN) += icn.o
......
...@@ -2,10 +2,6 @@ ...@@ -2,10 +2,6 @@
# Makefile for the isdnloop ISDN device driver # Makefile for the isdnloop ISDN device driver
# #
# The target object and module list name.
O_TARGET := built-in.o
# Each configuration option enables a list of files. # Each configuration option enables a list of files.
obj-$(CONFIG_ISDN_DRV_LOOP) += isdnloop.o obj-$(CONFIG_ISDN_DRV_LOOP) += isdnloop.o
......
# Makefile for the pcbit ISDN device driver # Makefile for the pcbit ISDN device driver
# The target object and module list name. # Each configuration option enables a list of files.
O_TARGET := built-in.o obj-$(CONFIG_ISDN_DRV_PCBIT) += pcbit.o
# Multipart objects. # Multipart objects.
pcbit-objs := module.o edss1.o drv.o layer2.o capi.o callbacks.o pcbit-objs := module.o edss1.o drv.o layer2.o capi.o callbacks.o
# Each configuration option enables a list of files.
obj-$(CONFIG_ISDN_DRV_PCBIT) += pcbit.o
include $(TOPDIR)/Rules.make include $(TOPDIR)/Rules.make
# Makefile for the sc ISDN device driver # Makefile for the sc ISDN device driver
# The target object and module list name. # Each configuration option enables a list of files.
O_TARGET := built-in.o obj-$(CONFIG_ISDN_DRV_SC) += sc.o
# Multipart objects. # Multipart objects.
sc-objs := shmem.o init.o debug.o packet.o command.o event.o \ sc-objs := shmem.o init.o debug.o packet.o command.o event.o \
ioctl.o interrupt.o message.o timer.o ioctl.o interrupt.o message.o timer.o
# Each configuration option enables a list of files.
obj-$(CONFIG_ISDN_DRV_SC) += sc.o
include $(TOPDIR)/Rules.make include $(TOPDIR)/Rules.make
# Makefile for the TurboPAM ISDN device driver # Makefile for the TurboPAM ISDN device driver
# The target object and module list name. # Each configuration option enables a list of files.
O_TARGET := built-in.o obj-$(CONFIG_ISDN_DRV_TPAM) += tpam.o
# Multipart objects. # Multipart objects.
tpam-objs := tpam_main.o tpam_nco.o tpam_memory.o tpam_commands.o tpam_queues.o tpam_hdlc.o tpam_crcpc.o tpam-objs := tpam_main.o tpam_nco.o tpam_memory.o tpam_commands.o \
tpam_queues.o tpam_hdlc.o tpam_crcpc.o
# Each configuration option enables a list of files.
obj-$(CONFIG_ISDN_DRV_TPAM) += tpam.o
include $(TOPDIR)/Rules.make include $(TOPDIR)/Rules.make
...@@ -6,15 +6,8 @@ O_TARGET := message.o ...@@ -6,15 +6,8 @@ O_TARGET := message.o
mod-subdirs := i2o fusion mod-subdirs := i2o fusion
subdir-$(CONFIG_I2O) += i2o obj-$(CONFIG_I2O) += i2o/
ifeq ($(CONFIG_I2O),y) obj-$(CONFIG_FUSION) += fusion/
obj-y += i2o/i2o.o
endif
subdir-$(CONFIG_FUSION) += fusion
ifeq ($(CONFIG_FUSION),y)
obj-y += fusion/fusion.o
endif
include $(TOPDIR)/Rules.make include $(TOPDIR)/Rules.make
...@@ -43,8 +43,6 @@ EXTRA_CFLAGS += -I. ${MPT_CFLAGS} ...@@ -43,8 +43,6 @@ EXTRA_CFLAGS += -I. ${MPT_CFLAGS}
#=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-} LSI_LOGIC #=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-} LSI_LOGIC
O_TARGET := fusion.o
export-objs := mptbase.o mptscsih.o mptlan.o mptctl.o isense.o export-objs := mptbase.o mptscsih.o mptlan.o mptctl.o isense.o
obj-$(CONFIG_FUSION) += mptbase.o mptscsih.o obj-$(CONFIG_FUSION) += mptbase.o mptscsih.o
......
...@@ -5,8 +5,6 @@ ...@@ -5,8 +5,6 @@
# In the future, some of these should be built conditionally. # In the future, some of these should be built conditionally.
# #
O_TARGET := i2o.o
export-objs := i2o_pci.o i2o_core.o i2o_config.o i2o_block.o i2o_lan.o i2o_scsi.o i2o_proc.o export-objs := i2o_pci.o i2o_core.o i2o_config.o i2o_block.o i2o_lan.o i2o_scsi.o i2o_proc.o
obj-$(CONFIG_I2O_PCI) += i2o_pci.o obj-$(CONFIG_I2O_PCI) += i2o_pci.o
......
# #
# Makefile for drivers/net/appletalk # Makefile for drivers/net/appletalk
# #
# 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).
#
O_TARGET := built-in.o
obj-y :=
obj-n :=
obj-m :=
obj- :=
export-objs := export-objs :=
obj-$(CONFIG_IPDDP) += ipddp.o obj-$(CONFIG_IPDDP) += ipddp.o
......
# Makefile for linux/drivers/net/arcnet # Makefile for linux/drivers/net/arcnet
# #
# 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).
#
O_TARGET := built-in.o
obj-y :=
obj-n :=
obj-m :=
obj- :=
export-objs := arcnet.o com20020.o export-objs := arcnet.o com20020.o
obj-$(CONFIG_ARCNET) += arcnet.o obj-$(CONFIG_ARCNET) += arcnet.o
......
# #
# Makefile for the Intel's E100 ethernet driver # Makefile for the Intel's E100 ethernet driver
# #
# 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 in the main makefile...
O_TARGET := built-in.o
obj-$(CONFIG_E100) += e100.o obj-$(CONFIG_E100) += e100.o
......
# #
# Makefile for the Intel(R) PRO/1000 ethernet driver # Makefile for the Intel(R) PRO/1000 ethernet driver
# #
# 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 in the main makefile...
O_TARGET := built-in.o
obj-$(CONFIG_E1000) += e1000.o obj-$(CONFIG_E1000) += e1000.o
......
...@@ -5,8 +5,6 @@ ...@@ -5,8 +5,6 @@
# Rewritten to use lists instead of if-statements. # Rewritten to use lists instead of if-statements.
# #
O_TARGET := built-in.o
obj-$(CONFIG_IPHASE5526) += iph5526.o obj-$(CONFIG_IPHASE5526) += iph5526.o
include $(TOPDIR)/Rules.make include $(TOPDIR)/Rules.make
...@@ -10,12 +10,8 @@ ...@@ -10,12 +10,8 @@
# Christoph Hellwig <hch@infradead.org> # Christoph Hellwig <hch@infradead.org>
# #
O_TARGET := built-in.o
export-objs = hdlcdrv.o export-objs = hdlcdrv.o
obj-$(CONFIG_DMASCC) += dmascc.o obj-$(CONFIG_DMASCC) += dmascc.o
obj-$(CONFIG_SCC) += scc.o obj-$(CONFIG_SCC) += scc.o
obj-$(CONFIG_MKISS) += mkiss.o obj-$(CONFIG_MKISS) += mkiss.o
......
# #
# Makefile for the soundmodem device driver. # Makefile for the soundmodem device driver.
# #
# 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 := built-in.o
obj-$(CONFIG_SOUNDMODEM) += soundmodem.o obj-$(CONFIG_SOUNDMODEM) += soundmodem.o
...@@ -25,19 +16,19 @@ soundmodem-$(CONFIG_SOUNDMODEM_PSK4800) += sm_psk4800.o ...@@ -25,19 +16,19 @@ soundmodem-$(CONFIG_SOUNDMODEM_PSK4800) += sm_psk4800.o
soundmodem-$(CONFIG_SOUNDMODEM_FSK9600) += sm_fsk9600.o soundmodem-$(CONFIG_SOUNDMODEM_FSK9600) += sm_fsk9600.o
soundmodem-objs := $(soundmodem-y) soundmodem-objs := $(soundmodem-y)
all: all_targets include $(TOPDIR)/Rules.make
.PHONY: all
gentbl: gentbl.c # Dependencies on generates files need to be listed explicitly
$(HOSTCC) $(HOSTCFLAGS) $< -o $@ -lm
sm_%.o: sm_tbl_%.h
TBLHDR := sm_tbl_afsk1200.h sm_tbl_afsk2400_8.h TBLHDR := sm_tbl_afsk1200.h sm_tbl_afsk2400_7.h sm_tbl_afsk2400_8.h \
TBLHDR += sm_tbl_afsk2666.h sm_tbl_psk4800.h sm_tbl_afsk2666.h sm_tbl_psk4800.h sm_tbl_hapn4800.h \
TBLHDR += sm_tbl_hapn4800.h sm_tbl_fsk9600.h sm_tbl_fsk9600.h
$(TBLHDR): gentbl $(TBLHDR): gentbl
./gentbl ./gentbl
fastdep: $(TBLHDR) gentbl: gentbl.c
$(HOSTCC) $(HOSTCFLAGS) $< -o $@ -lm
include $(TOPDIR)/Rules.make
# File: drivers/irda/Makefile
# #
# Makefile for the Linux IrDA infrared port device drivers. # Makefile for the Linux IrDA infrared port device drivers.
# #
...@@ -6,11 +5,8 @@ ...@@ -6,11 +5,8 @@
# Rewritten to use lists instead of if-statements. # Rewritten to use lists instead of if-statements.
# #
O_TARGET := built-in.o
export-objs = irport.o export-objs = irport.o
obj-$(CONFIG_IRTTY_SIR) += irtty.o obj-$(CONFIG_IRTTY_SIR) += irtty.o
obj-$(CONFIG_IRPORT_SIR) += irport.o obj-$(CONFIG_IRPORT_SIR) += irport.o
obj-$(CONFIG_USB_IRDA) += irda-usb.o obj-$(CONFIG_USB_IRDA) += irda-usb.o
......
# #
# drivers/net/pcmcia/Makefile
#
# Makefile for the Linux PCMCIA network device drivers. # Makefile for the Linux PCMCIA network device drivers.
# #
O_TARGET := built-in.o
obj-y :=
obj-m :=
obj-n :=
obj- :=
# Things that need to export symbols # Things that need to export symbols
export-objs := ray_cs.o export-objs := ray_cs.o
......
# File: drivers/sk98lin/Makefile
# #
# Makefile for the SysKonnect SK-98xx device driver. # Makefile for the SysKonnect SK-98xx device driver.
# #
O_TARGET := built-in.o
obj-$(CONFIG_SK98LIN) += sk98lin.o obj-$(CONFIG_SK98LIN) += sk98lin.o
sk98lin-objs := skge.o skaddr.o skgehwt.o skgeinit.o skgepnmi.o skgesirq.o \ sk98lin-objs := skge.o skaddr.o skgehwt.o skgeinit.o skgepnmi.o skgesirq.o \
......
...@@ -2,8 +2,6 @@ ...@@ -2,8 +2,6 @@
# Makefile for the SysKonnect FDDI PCI adapter driver # Makefile for the SysKonnect FDDI PCI adapter driver
# #
O_TARGET := built-in.o
obj-$(CONFIG_SKFP) += skfp.o obj-$(CONFIG_SKFP) += skfp.o
skfp-objs := skfddi.o hwmtm.o fplustm.o smt.o cfm.o \ skfp-objs := skfddi.o hwmtm.o fplustm.o smt.o cfm.o \
......
# #
# Makefile for drivers/net/tokenring # Makefile for drivers/net/tokenring
# #
# 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).
#
O_TARGET := built-in.o
obj-y :=
obj-n :=
obj-m :=
obj- :=
export-objs := tms380tr.o export-objs := tms380tr.o
obj-$(CONFIG_IBMTR) += ibmtr.o obj-$(CONFIG_IBMTR) += ibmtr.o
......
# #
# drivers/net/tulip/Makefile
#
# Makefile for the Linux "Tulip" family network device drivers. # Makefile for the Linux "Tulip" family network device drivers.
# #
O_TARGET := built-in.o
obj-y :=
obj-m :=
obj-n :=
obj- :=
# Things that need to export symbols
export-objs :=
obj-$(CONFIG_PCMCIA_XIRTULIP) += xircom_tulip_cb.o obj-$(CONFIG_PCMCIA_XIRTULIP) += xircom_tulip_cb.o
obj-$(CONFIG_PCMCIA_XIRCOM) += xircom_cb.o obj-$(CONFIG_PCMCIA_XIRCOM) += xircom_cb.o
obj-$(CONFIG_DM9102) += dmfe.o obj-$(CONFIG_DM9102) += dmfe.o
......
...@@ -5,8 +5,6 @@ ...@@ -5,8 +5,6 @@
# Rewritten to use lists instead of if-statements. # Rewritten to use lists instead of if-statements.
# #
O_TARGET := built-in.o
export-objs := z85230.o syncppp.o comx.o sdladrv.o cycx_drv.o hdlc_generic.o \ export-objs := z85230.o syncppp.o comx.o sdladrv.o cycx_drv.o hdlc_generic.o \
dlci.o pc300_drv.o dlci.o pc300_drv.o
......
# File: drivers/lmc/Makefile
# #
# Makefile for the Lan Media 21140 based WAN cards # Makefile for the Lan Media 21140 based WAN cards
# Specifically the 1000,1200,5200,5245 # Specifically the 1000,1200,5200,5245
# #
O_TARGET := built-in.o
obj-$(CONFIG_LANMEDIA) += lmc.o obj-$(CONFIG_LANMEDIA) += lmc.o
lmc-objs := lmc_debug.o lmc_media.o lmc_main.o lmc_proto.o lmc-objs := lmc_debug.o lmc_media.o lmc_main.o lmc_proto.o
......
# #
# drivers/net/wireless/Makefile
#
# Makefile for the Linux Wireless network device drivers. # Makefile for the Linux Wireless network device drivers.
# #
O_TARGET := built-in.o
obj-y :=
obj-m :=
obj-n :=
obj- :=
# Things that need to export symbols # Things that need to export symbols
export-objs := airo.o orinoco.o hermes.o export-objs := airo.o orinoco.o hermes.o
......
# #
# Makefile for the nubus specific drivers. # Makefile for the nubus specific drivers.
# #
# 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 inherited from the
# parent makefile.
#
L_TARGET := nubus.a
export-objs := nubus_syms.o export-objs := nubus_syms.o
......
...@@ -25,10 +25,8 @@ export-objs := scsi_syms.o 53c700.o ...@@ -25,10 +25,8 @@ export-objs := scsi_syms.o 53c700.o
mod-subdirs := pcmcia ../acorn/scsi mod-subdirs := pcmcia ../acorn/scsi
subdir-$(CONFIG_SCSI_AIC7XXX) += aic7xxx
subdir-$(CONFIG_PCMCIA) += pcmcia subdir-$(CONFIG_PCMCIA) += pcmcia
obj-$(CONFIG_SCSI) += scsi_mod.o obj-$(CONFIG_SCSI) += scsi_mod.o
obj-$(CONFIG_A4000T_SCSI) += amiga7xx.o 53c7xx.o obj-$(CONFIG_A4000T_SCSI) += amiga7xx.o 53c7xx.o
...@@ -64,9 +62,7 @@ obj-$(CONFIG_SCSI_ULTRASTOR) += ultrastor.o ...@@ -64,9 +62,7 @@ obj-$(CONFIG_SCSI_ULTRASTOR) += ultrastor.o
obj-$(CONFIG_SCSI_AHA152X) += aha152x.o obj-$(CONFIG_SCSI_AHA152X) += aha152x.o
obj-$(CONFIG_SCSI_AHA1542) += aha1542.o obj-$(CONFIG_SCSI_AHA1542) += aha1542.o
obj-$(CONFIG_SCSI_AHA1740) += aha1740.o obj-$(CONFIG_SCSI_AHA1740) += aha1740.o
ifeq ($(CONFIG_SCSI_AIC7XXX),y) obj-$(CONFIG_SCSI_AIC7XXX) += aic7xxx/
obj-$(CONFIG_SCSI_AIC7XXX) += aic7xxx/aic7xxx_drv.o
endif
obj-$(CONFIG_SCSI_AIC7XXX_OLD) += aic7xxx_old.o obj-$(CONFIG_SCSI_AIC7XXX_OLD) += aic7xxx_old.o
obj-$(CONFIG_SCSI_IPS) += ips.o obj-$(CONFIG_SCSI_IPS) += ips.o
obj-$(CONFIG_SCSI_FD_MCS) += fd_mcs.o obj-$(CONFIG_SCSI_FD_MCS) += fd_mcs.o
...@@ -87,10 +83,7 @@ obj-$(CONFIG_SCSI_T128) += t128.o ...@@ -87,10 +83,7 @@ obj-$(CONFIG_SCSI_T128) += t128.o
obj-$(CONFIG_SCSI_DMX3191D) += dmx3191d.o obj-$(CONFIG_SCSI_DMX3191D) += dmx3191d.o
obj-$(CONFIG_SCSI_DTC3280) += dtc.o obj-$(CONFIG_SCSI_DTC3280) += dtc.o
obj-$(CONFIG_SCSI_NCR53C7xx) += 53c7,8xx.o obj-$(CONFIG_SCSI_NCR53C7xx) += 53c7,8xx.o
subdir-$(CONFIG_SCSI_SYM53C8XX_2) += sym53c8xx_2 obj-$(CONFIG_SCSI_SYM53C8XX_2) += sym53c8xx_2/
ifeq ($(CONFIG_SCSI_SYM53C8XX_2),y)
obj-$(CONFIG_SCSI_SYM53C8XX_2) += sym53c8xx_2/sym53c8xx_2.o
endif
obj-$(CONFIG_SCSI_SYM53C8XX) += sym53c8xx.o obj-$(CONFIG_SCSI_SYM53C8XX) += sym53c8xx.o
obj-$(CONFIG_SCSI_NCR53C8XX) += ncr53c8xx.o obj-$(CONFIG_SCSI_NCR53C8XX) += ncr53c8xx.o
obj-$(CONFIG_SCSI_EATA_DMA) += eata_dma.o obj-$(CONFIG_SCSI_EATA_DMA) += eata_dma.o
...@@ -123,8 +116,7 @@ obj-$(CONFIG_SCSI_FCAL) += fcal.o ...@@ -123,8 +116,7 @@ obj-$(CONFIG_SCSI_FCAL) += fcal.o
obj-$(CONFIG_SCSI_CPQFCTS) += cpqfc.o obj-$(CONFIG_SCSI_CPQFCTS) += cpqfc.o
obj-$(CONFIG_SCSI_LASI700) += lasi700.o 53c700.o obj-$(CONFIG_SCSI_LASI700) += lasi700.o 53c700.o
subdir-$(CONFIG_ARCH_ACORN) += ../acorn/scsi obj-$(CONFIG_ARCH_ACORN) += ../acorn/scsi/
obj-$(CONFIG_ARCH_ACORN) += ../acorn/scsi/acorn-scsi.o
obj-$(CONFIG_CHR_DEV_ST) += st.o obj-$(CONFIG_CHR_DEV_ST) += st.o
obj-$(CONFIG_CHR_DEV_OSST) += osst.o obj-$(CONFIG_CHR_DEV_OSST) += osst.o
......
...@@ -2,8 +2,6 @@ ...@@ -2,8 +2,6 @@
# Makefile for the Linux aic7xxx SCSI driver. # Makefile for the Linux aic7xxx SCSI driver.
# #
O_TARGET := aic7xxx_drv.o
obj-$(CONFIG_SCSI_AIC7XXX) += aic7xxx.o obj-$(CONFIG_SCSI_AIC7XXX) += aic7xxx.o
# Core files # Core files
......
# Makefile for the NCR/SYMBIOS/LSI 53C8XX PCI SCSI controllers driver. # Makefile for the NCR/SYMBIOS/LSI 53C8XX PCI SCSI controllers driver.
O_TARGET := sym53c8xx_2.o
sym53c8xx-objs := sym_fw.o sym_glue.o sym_hipd.o sym_malloc.o sym_misc.o sym_nvram.o sym53c8xx-objs := sym_fw.o sym_glue.o sym_hipd.o sym_malloc.o sym_misc.o sym_nvram.o
obj-$(CONFIG_SCSI_SYM53C8XX_2) := sym53c8xx.o obj-$(CONFIG_SCSI_SYM53C8XX_2) := sym53c8xx.o
......
# #
# Makefile for the linux kernel. # Makefile for the linux kernel.
# #
# 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 in the main makefile...
L_TARGET := sgi.a
# #
# Character and Audio devices for SGI machines. # Character and Audio devices for SGI machines.
......
O_TARGET := built-in.o
export-objs := atyfb_base.o mach64_accel.o export-objs := atyfb_base.o mach64_accel.o
obj-$(CONFIG_FB_ATY) += atyfb.o obj-$(CONFIG_FB_ATY) += atyfb.o
......
...@@ -2,8 +2,6 @@ ...@@ -2,8 +2,6 @@
# 5 Aug 1999, James Simmons, <mailto:jsimmons@edgeglobal.com> # 5 Aug 1999, James Simmons, <mailto:jsimmons@edgeglobal.com>
# Rewritten to use lists instead of if-statements. # Rewritten to use lists instead of if-statements.
O_TARGET := built-in.o
# All of the (potential) objects that export symbols. # All of the (potential) objects that export symbols.
# This list comes from 'grep -l EXPORT_SYMBOL *.[hc]'. # This list comes from 'grep -l EXPORT_SYMBOL *.[hc]'.
......
...@@ -2,8 +2,6 @@ ...@@ -2,8 +2,6 @@
# Makefile for the Riva framebuffer driver # Makefile for the Riva framebuffer driver
# #
O_TARGET := built-in.o
obj-$(CONFIG_FB_RIVA) += rivafb.o obj-$(CONFIG_FB_RIVA) += rivafb.o
rivafb-objs := fbdev.o riva_hw.o accel.o rivafb-objs := fbdev.o riva_hw.o accel.o
......
...@@ -2,8 +2,6 @@ ...@@ -2,8 +2,6 @@
# Makefile for the SiS framebuffer device driver # Makefile for the SiS framebuffer device driver
# #
O_TARGET := built-in.o
export-objs := sis_main.o export-objs := sis_main.o
obj-$(CONFIG_FB_SIS) += sisfb.o obj-$(CONFIG_FB_SIS) += sisfb.o
......
...@@ -23,55 +23,6 @@ obj-y += nfsctl.o ...@@ -23,55 +23,6 @@ obj-y += nfsctl.o
endif endif
endif endif
subdir-$(CONFIG_PROC_FS) += proc
subdir-y += partitions
subdir-y += driverfs
# Do not add any filesystems before this line
subdir-$(CONFIG_EXT3_FS) += ext3 # Before ext2 so root fs can be ext3
subdir-$(CONFIG_JBD) += jbd
subdir-$(CONFIG_EXT2_FS) += ext2
subdir-$(CONFIG_CRAMFS) += cramfs
subdir-$(CONFIG_RAMFS) += ramfs
subdir-$(CONFIG_CODA_FS) += coda
subdir-$(CONFIG_INTERMEZZO_FS) += intermezzo
subdir-$(CONFIG_MINIX_FS) += minix
subdir-$(CONFIG_FAT_FS) += fat
subdir-$(CONFIG_UMSDOS_FS) += umsdos
subdir-$(CONFIG_MSDOS_FS) += msdos
subdir-$(CONFIG_VFAT_FS) += vfat
subdir-$(CONFIG_BFS_FS) += bfs
subdir-$(CONFIG_ISO9660_FS) += isofs
subdir-$(CONFIG_DEVFS_FS) += devfs
subdir-$(CONFIG_HFS_FS) += hfs
subdir-$(CONFIG_VXFS_FS) += freevxfs
subdir-$(CONFIG_NFS_FS) += nfs
subdir-$(CONFIG_EXPORTFS) += exportfs
subdir-$(CONFIG_NFSD) += nfsd
subdir-$(CONFIG_LOCKD) += lockd
subdir-$(CONFIG_NLS) += nls
subdir-$(CONFIG_SYSV_FS) += sysv
subdir-$(CONFIG_SMB_FS) += smbfs
subdir-$(CONFIG_NCP_FS) += ncpfs
subdir-$(CONFIG_HPFS_FS) += hpfs
subdir-$(CONFIG_NTFS_FS) += ntfs
subdir-$(CONFIG_UFS_FS) += ufs
subdir-$(CONFIG_EFS_FS) += efs
subdir-$(CONFIG_JFFS_FS) += jffs
subdir-$(CONFIG_JFFS2_FS) += jffs2
subdir-$(CONFIG_AFFS_FS) += affs
subdir-$(CONFIG_ROMFS_FS) += romfs
subdir-$(CONFIG_QNX4FS_FS) += qnx4
subdir-$(CONFIG_UDF_FS) += udf
subdir-$(CONFIG_AUTOFS_FS) += autofs
subdir-$(CONFIG_AUTOFS4_FS) += autofs4
subdir-$(CONFIG_ADFS_FS) += adfs
subdir-$(CONFIG_REISERFS_FS) += reiserfs
subdir-$(CONFIG_DEVPTS_FS) += devpts
subdir-$(CONFIG_SUN_OPENPROMFS) += openpromfs
subdir-$(CONFIG_JFS_FS) += jfs
obj-$(CONFIG_BINFMT_AOUT) += binfmt_aout.o obj-$(CONFIG_BINFMT_AOUT) += binfmt_aout.o
obj-$(CONFIG_BINFMT_EM86) += binfmt_em86.o obj-$(CONFIG_BINFMT_EM86) += binfmt_em86.o
obj-$(CONFIG_BINFMT_MISC) += binfmt_misc.o obj-$(CONFIG_BINFMT_MISC) += binfmt_misc.o
...@@ -81,12 +32,56 @@ obj-y += binfmt_script.o ...@@ -81,12 +32,56 @@ obj-y += binfmt_script.o
obj-$(CONFIG_BINFMT_ELF) += binfmt_elf.o obj-$(CONFIG_BINFMT_ELF) += binfmt_elf.o
obj-$(CONFIG_QUOTA) += dquot.o obj-$(CONFIG_QUOTA) += dquot.o
obj-$(CONFIG_QFMT_V1) += quota_v1.o obj-$(CONFIG_QFMT_V1) += quota_v1.o
obj-$(CONFIG_QFMT_V2) += quota_v2.o obj-$(CONFIG_QFMT_V2) += quota_v2.o
# persistent filesystems obj-$(CONFIG_PROC_FS) += proc/
obj-y += $(join $(subdir-y),$(subdir-y:%=/%.o)) obj-y += partitions/
obj-y += driverfs/
# Do not add any filesystems before this line
obj-$(CONFIG_EXT3_FS) += ext3/ # Before ext2 so root fs can be ext3
obj-$(CONFIG_JBD) += jbd/
obj-$(CONFIG_EXT2_FS) += ext2/
obj-$(CONFIG_CRAMFS) += cramfs/
obj-$(CONFIG_RAMFS) += ramfs/
obj-$(CONFIG_CODA_FS) += coda/
obj-$(CONFIG_INTERMEZZO_FS) += intermezzo/
obj-$(CONFIG_MINIX_FS) += minix/
obj-$(CONFIG_FAT_FS) += fat/
obj-$(CONFIG_UMSDOS_FS) += umsdos/
obj-$(CONFIG_MSDOS_FS) += msdos/
obj-$(CONFIG_VFAT_FS) += vfat/
obj-$(CONFIG_BFS_FS) += bfs/
obj-$(CONFIG_ISO9660_FS) += isofs/
obj-$(CONFIG_DEVFS_FS) += devfs/
obj-$(CONFIG_HFS_FS) += hfs/
obj-$(CONFIG_VXFS_FS) += freevxfs/
obj-$(CONFIG_NFS_FS) += nfs/
obj-$(CONFIG_EXPORTFS) += exportfs/
obj-$(CONFIG_NFSD) += nfsd/
obj-$(CONFIG_LOCKD) += lockd/
obj-$(CONFIG_NLS) += nls/
obj-$(CONFIG_SYSV_FS) += sysv/
obj-$(CONFIG_SMB_FS) += smbfs/
obj-$(CONFIG_NCP_FS) += ncpfs/
obj-$(CONFIG_HPFS_FS) += hpfs/
obj-$(CONFIG_NTFS_FS) += ntfs/
obj-$(CONFIG_UFS_FS) += ufs/
obj-$(CONFIG_EFS_FS) += efs/
obj-$(CONFIG_JFFS_FS) += jffs/
obj-$(CONFIG_JFFS2_FS) += jffs2/
obj-$(CONFIG_AFFS_FS) += affs/
obj-$(CONFIG_ROMFS_FS) += romfs/
obj-$(CONFIG_QNX4FS_FS) += qnx4/
obj-$(CONFIG_UDF_FS) += udf/
obj-$(CONFIG_AUTOFS_FS) += autofs/
obj-$(CONFIG_AUTOFS4_FS) += autofs4/
obj-$(CONFIG_ADFS_FS) += adfs/
obj-$(CONFIG_REISERFS_FS) += reiserfs/
obj-$(CONFIG_DEVPTS_FS) += devpts/
obj-$(CONFIG_SUN_OPENPROMFS) += openpromfs/
obj-$(CONFIG_JFS_FS) += jfs/
include $(TOPDIR)/Rules.make include $(TOPDIR)/Rules.make
# #
# Makefile for the linux adfs filesystem routines. # Makefile for the linux adfs filesystem routines.
# #
# 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 (not a .c file).
#
# Note 2! The CFLAGS definitions are now in the main makefile.
O_TARGET := adfs.o obj-$(CONFIG_ADFS_FS) += adfs.o
obj-y := dir.o dir_f.o dir_fplus.o file.o inode.o map.o super.o adfs-objs := dir.o dir_f.o dir_fplus.o file.o inode.o map.o super.o
obj-m := $(O_TARGET)
include $(TOPDIR)/Rules.make include $(TOPDIR)/Rules.make
# #
# Makefile for the Linux affs filesystem routines. # Makefile for the Linux affs filesystem routines.
# #
# 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 (not a .c file).
#
# Note 2! The CFLAGS definitions are now in the main makefile.
#EXTRA_CFLAGS=-DDEBUG=1 #EXTRA_CFLAGS=-DDEBUG=1
O_TARGET := affs.o obj-$(CONFIG_AFFS_FS) += affs.o
obj-y := super.o namei.o inode.o file.o dir.o amigaffs.o bitmap.o symlink.o affs-objs := super.o namei.o inode.o file.o dir.o amigaffs.o bitmap.o symlink.o
obj-m := $(O_TARGET)
include $(TOPDIR)/Rules.make include $(TOPDIR)/Rules.make
# #
# Makefile for the linux autofs-filesystem routines. # Makefile for the linux autofs-filesystem routines.
# #
# We can build this either out of the kernel tree or the autofs tools tree.
#
O_TARGET := autofs.o obj-$(CONFIG_AUTOFS_FS) += autofs.o
obj-y := dirhash.o init.o inode.o root.o symlink.o waitq.o autofs-objs := dirhash.o init.o inode.o root.o symlink.o waitq.o
obj-m := $(O_TARGET)
include $(TOPDIR)/Rules.make include $(TOPDIR)/Rules.make
# #
# Makefile for the linux autofs-filesystem routines. # Makefile for the linux autofs-filesystem routines.
# #
# We can build this either out of the kernel tree or the autofs tools tree.
#
O_TARGET := autofs4.o
obj-y := init.o inode.o root.o symlink.o waitq.o expire.o obj-$(CONFIG_AUTOFS4_FS) += autofs4.o
obj-m := $(O_TARGET) autofs4-objs := init.o inode.o root.o symlink.o waitq.o expire.o
include $(TOPDIR)/Rules.make include $(TOPDIR)/Rules.make
# #
# Makefile for BFS filesystem. # Makefile for BFS filesystem.
# #
# 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 in the main Makefile...
O_TARGET := bfs.o obj-$(CONFIG_BFS_FS) += bfs.o
obj-y := inode.o file.o dir.o bfs-objs := inode.o file.o dir.o
obj-m := $(O_TARGET)
include $(TOPDIR)/Rules.make include $(TOPDIR)/Rules.make
...@@ -2,11 +2,10 @@ ...@@ -2,11 +2,10 @@
# Makefile for the Linux Coda filesystem routines. # Makefile for the Linux Coda filesystem routines.
# #
O_TARGET := coda.o obj-$(CONFIG_CODA_FS) += coda.o
obj-y := psdev.o cache.o cnode.o inode.o dir.o file.o upcall.o coda_linux.o\ coda-objs := psdev.o cache.o cnode.o inode.o dir.o file.o upcall.o \
symlink.o pioctl.o sysctl.o coda_linux.o symlink.o pioctl.o sysctl.o
obj-m := $(O_TARGET)
# If you want debugging output, please uncomment the following line. # If you want debugging output, please uncomment the following line.
......
...@@ -2,10 +2,8 @@ ...@@ -2,10 +2,8 @@
# Makefile for the linux cramfs routines. # Makefile for the linux cramfs routines.
# #
O_TARGET := cramfs.o obj-$(CONFIG_CRAMFS) += cramfs.o
obj-y := inode.o uncompress.o cramfs-objs := inode.o uncompress.o
obj-m := $(O_TARGET)
include $(TOPDIR)/Rules.make include $(TOPDIR)/Rules.make
# #
# Makefile for the linux devfs-filesystem routines. # Makefile for the linux devfs-filesystem routines.
# #
# 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 in the main makefile...
O_TARGET := devfs.o
export-objs := base.o util.o export-objs := base.o util.o
obj-y := base.o util.o obj-$(CONFIG_DEVFS_FS) += devfs.o
devfs-objs := base.o util.o
# Special case to support building documentation # Special case to support building documentation
ifndef TOPDIR ifndef TOPDIR
......
...@@ -2,10 +2,8 @@ ...@@ -2,10 +2,8 @@
# Makefile for the Linux /dev/pts virtual filesystem. # Makefile for the Linux /dev/pts virtual filesystem.
# #
O_TARGET := devpts.o obj-$(CONFIG_DEVPTS_FS) += devpts.o
obj-y := root.o inode.o devpts-objs := root.o inode.o
obj-m := $(O_TARGET)
include $(TOPDIR)/Rules.make include $(TOPDIR)/Rules.make
O_TARGET := driverfs.o #
# Makefile for the driverfs virtual filesystem.
#
export-objs := inode.o export-objs := inode.o
obj-y := inode.o obj-y := inode.o
obj-m := $(O_TARGET)
include $(TOPDIR)/Rules.make include $(TOPDIR)/Rules.make
# #
# Makefile for the linux efs-filesystem routines. # Makefile for the linux efs-filesystem routines.
# #
# 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 in the main makefile...
O_TARGET := efs.o obj-$(CONFIG_EFS_FS) += efs.o
obj-y := super.o inode.o namei.o dir.o file.o symlink.o efs-objs := super.o inode.o namei.o dir.o file.o symlink.o
obj-m := $(O_TARGET)
include $(TOPDIR)/Rules.make include $(TOPDIR)/Rules.make
# #
# Makefile for the filesystem export support routines. # Makefile for the filesystem export support routines.
O_TARGET := exportfs.o
export-objs := expfs.o export-objs := expfs.o
obj-y := expfs.o obj-$(CONFIG_EXPORTFS) += exportfs.o
obj-m := $(O_TARGET)
exportfs-objs := expfs.o
include $(TOPDIR)/Rules.make include $(TOPDIR)/Rules.make
# #
# Makefile for the linux ext2-filesystem routines. # Makefile for the linux ext2-filesystem routines.
# #
# 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 in the main makefile...
O_TARGET := ext2.o obj-$(CONFIG_EXT2_FS) += ext2.o
obj-y := balloc.o bitmap.o dir.o file.o fsync.o ialloc.o inode.o \ ext2-objs := balloc.o bitmap.o dir.o file.o fsync.o ialloc.o inode.o \
ioctl.o namei.o super.o symlink.o ioctl.o namei.o super.o symlink.o
obj-m := $(O_TARGET)
include $(TOPDIR)/Rules.make include $(TOPDIR)/Rules.make
# #
# Makefile for the linux ext2-filesystem routines. # Makefile for the linux ext3-filesystem routines.
# #
# 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 in the main makefile...
O_TARGET := ext3.o obj-$(CONFIG_EXT3_FS) += ext3.o
obj-y := balloc.o bitmap.o dir.o file.o fsync.o ialloc.o inode.o \ ext3-objs := balloc.o bitmap.o dir.o file.o fsync.o ialloc.o inode.o \
ioctl.o namei.o super.o symlink.o ioctl.o namei.o super.o symlink.o
obj-m := $(O_TARGET)
include $(TOPDIR)/Rules.make include $(TOPDIR)/Rules.make
# #
# Makefile for the Linux fat filesystem support. # Makefile for the Linux fat filesystem support.
# #
# 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 (not a .c file).
#
# Note 2! The CFLAGS definitions are now in the main makefile.
O_TARGET := fat.o
export-objs := fatfs_syms.o export-objs := fatfs_syms.o
obj-y := buffer.o cache.o dir.o file.o inode.o misc.o cvf.o fatfs_syms.o obj-$(CONFIG_FAT_FS) += fat.o
obj-m := $(O_TARGET)
fat-objs := buffer.o cache.o dir.o file.o inode.o misc.o cvf.o fatfs_syms.o
include $(TOPDIR)/Rules.make include $(TOPDIR)/Rules.make
...@@ -2,10 +2,9 @@ ...@@ -2,10 +2,9 @@
# VxFS Makefile # VxFS Makefile
# #
O_TARGET := freevxfs.o obj-$(CONFIG_VXFS_FS) += freevxfs.o
obj-y := vxfs_bmap.o vxfs_fshead.o vxfs_immed.o vxfs_inode.o \ freevxfs-objs := vxfs_bmap.o vxfs_fshead.o vxfs_immed.o vxfs_inode.o \
vxfs_lookup.o vxfs_olt.o vxfs_subr.o vxfs_super.o vxfs_lookup.o vxfs_olt.o vxfs_subr.o vxfs_super.o
obj-m := $(O_TARGET)
include $(TOPDIR)/Rules.make include $(TOPDIR)/Rules.make
# #
# Makefile for the Linux hfs filesystem routines. # Makefile for the Linux hfs filesystem routines.
# #
# 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 (not a .c file).
#
# Note 2! The CFLAGS definitions are now in the main makefile.
O_TARGET := hfs.o obj-$(CONFIG_HFS_FS) += hfs.o
obj-y := balloc.o bdelete.o bfind.o bins_del.o binsert.o bitmap.o bitops.o \ hfs-objs := balloc.o bdelete.o bfind.o bins_del.o binsert.o bitmap.o bitops.o \
bnode.o brec.o btree.o catalog.o dir.o dir_cap.o dir_dbl.o \ bnode.o brec.o btree.o catalog.o dir.o dir_cap.o dir_dbl.o \
dir_nat.o extent.o file.o file_cap.o file_hdr.o inode.o mdb.o \ dir_nat.o extent.o file.o file_cap.o file_hdr.o inode.o mdb.o \
part_tbl.o string.o super.o sysdep.o trans.o version.o part_tbl.o string.o super.o sysdep.o trans.o version.o
obj-m := $(O_TARGET)
include $(TOPDIR)/Rules.make include $(TOPDIR)/Rules.make
O_TARGET := hpfs.o #
# Makefile for the Linux hpfs filesystem routines.
#
obj-y := alloc.o anode.o buffer.o dentry.o dir.o dnode.o ea.o file.o inode.o map.o name.o namei.o super.o obj-$(CONFIG_HPFS_FS) += hpfs.o
obj-m := $(O_TARGET)
hpfs-objs := alloc.o anode.o buffer.o dentry.o dir.o dnode.o ea.o file.o \
inode.o map.o name.o namei.o super.o
include $(TOPDIR)/Rules.make include $(TOPDIR)/Rules.make
...@@ -2,11 +2,11 @@ ...@@ -2,11 +2,11 @@
# Makefile 1.00 Peter Braam <braam@clusterfs.com> # Makefile 1.00 Peter Braam <braam@clusterfs.com>
# #
O_TARGET := intermezzo.o obj-$(CONFIG_INTERMEZZO_FS) += intermezzo.o
obj-y := journal_reiserfs.o cache.o journal.o presto.o vfs.o psdev.o upcall.o methods.o sysctl.o dcache.o dir.o super.o journal_ext2.o journal_ext3.o journal_xfs.o inode.o file.o journal_obdfs.o intermezzo-objs := journal_reiserfs.o cache.o journal.o presto.o vfs.o \
psdev.o upcall.o methods.o sysctl.o dcache.o dir.o \
super.o journal_ext2.o journal_ext3.o journal_xfs.o \
obj-m := $(O_TARGET) inode.o file.o journal_obdfs.o
include $(TOPDIR)/Rules.make include $(TOPDIR)/Rules.make
# #
# Makefile for the Linux isofs filesystem routines. # Makefile for the Linux isofs filesystem routines.
# #
# 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 (not a .c file).
#
# Note 2! The CFLAGS definitions are now in the main makefile.
O_TARGET := isofs.o
obj-y := namei.o inode.o dir.o util.o rock.o obj-$(CONFIG_ISO9660_FS) += isofs.o
obj-$(CONFIG_JOLIET) += joliet.o
obj-$(CONFIG_ZISOFS) += compress.o
obj-m := $(O_TARGET) isofs-objs-y := namei.o inode.o dir.o util.o rock.o
isofs-objs-$(CONFIG_JOLIET) += joliet.o
isofs-objs-$(CONFIG_ZISOFS) += compress.o
isofs-objs := $(isofs-objs-y)
include $(TOPDIR)/Rules.make include $(TOPDIR)/Rules.make
# #
# fs/jbd/Makefile
#
# Makefile for the linux journaling routines. # Makefile for the linux journaling routines.
# #
export-objs := journal.o export-objs := journal.o
O_TARGET := jbd.o
obj-y := transaction.o commit.o recovery.o checkpoint.o revoke.o journal.o obj-$(CONFIG_JBD) += jbd.o
obj-m := $(O_TARGET) jbd-objs := transaction.o commit.o recovery.o checkpoint.o revoke.o journal.o
include $(TOPDIR)/Rules.make include $(TOPDIR)/Rules.make
...@@ -4,21 +4,11 @@ ...@@ -4,21 +4,11 @@
# $Id: Makefile,v 1.11 2001/09/25 20:59:41 dwmw2 Exp $ # $Id: Makefile,v 1.11 2001/09/25 20:59:41 dwmw2 Exp $
# #
obj-y := jffs_fm.o intrep.o obj-$(CONFIG_JFFS_FS) += jffs.o
ifeq ($(PATCHLEVEL),2) jffs-y := jffs_fm.o intrep.o inode-v23.o
obj-y += inode-v22.o jffs-$(CONFIG_JFFS_PROC_FS) += jffs_proc.o
else jffs-objs := $(jffs-y)
obj-y += inode-v23.o
endif
ifeq ($(CONFIG_JFFS_PROC_FS),y)
obj-y += jffs_proc.o
endif
O_TARGET := jffs.o
obj-m := $(O_TARGET)
include $(TOPDIR)/Rules.make include $(TOPDIR)/Rules.make
...@@ -3,12 +3,8 @@ ...@@ -3,12 +3,8 @@
# #
# $Id: Makefile,v 1.34 2002/03/08 11:27:59 dwmw2 Exp $ # $Id: Makefile,v 1.34 2002/03/08 11:27:59 dwmw2 Exp $
# #
# 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 in the main makefile...
obj-$(CONFIG_JFFS2_FS) += jffs2.o
COMPR_OBJS := compr.o compr_rubin.o compr_rtime.o compr_zlib.o COMPR_OBJS := compr.o compr_rubin.o compr_rtime.o compr_zlib.o
JFFS2_OBJS := dir.o file.o ioctl.o nodelist.o malloc.o \ JFFS2_OBJS := dir.o file.o ioctl.o nodelist.o malloc.o \
...@@ -20,11 +16,8 @@ LINUX_OBJS-25 := super.o ...@@ -20,11 +16,8 @@ LINUX_OBJS-25 := super.o
NAND_OBJS-$(CONFIG_JFFS2_FS_NAND) := wbuf.o NAND_OBJS-$(CONFIG_JFFS2_FS_NAND) := wbuf.o
O_TARGET := jffs2.o jffs2-objs := $(COMPR_OBJS) $(JFFS2_OBJS) $(VERS_OBJS) $(NAND_OBJS-y) \
$(LINUX_OBJS-$(VERSION)$(PATCHLEVEL))
obj-y := $(COMPR_OBJS) $(JFFS2_OBJS) $(VERS_OBJS) $(NAND_OBJS-y) \
$(LINUX_OBJS-$(VERSION)$(PATCHLEVEL))
obj-m := $(O_TARGET)
include $(TOPDIR)/Rules.make include $(TOPDIR)/Rules.make
# #
# Makefile for the Linux JFS filesystem routines. # Makefile for the Linux JFS filesystem routines.
# #
# 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 (not a .c file).
#
# Note 2! The CFLAGS definitions are now in the main makefile.
O_TARGET := jfs.o obj-$(CONFIG_JFS_FS) += jfs.o
obj-y := super.o file.o inode.o namei.o jfs_mount.o jfs_umount.o \
jfs-objs := super.o file.o inode.o namei.o jfs_mount.o jfs_umount.o \
jfs_xtree.o jfs_imap.o jfs_debug.o jfs_dmap.o \ jfs_xtree.o jfs_imap.o jfs_debug.o jfs_dmap.o \
jfs_unicode.o jfs_dtree.o jfs_inode.o \ jfs_unicode.o jfs_dtree.o jfs_inode.o \
jfs_extent.o symlink.o jfs_metapage.o \ jfs_extent.o symlink.o jfs_metapage.o \
jfs_logmgr.o jfs_txnmgr.o jfs_uniupr.o jfs_logmgr.o jfs_txnmgr.o jfs_uniupr.o
obj-m := $(O_TARGET)
EXTRA_CFLAGS += -D_JFS_4K EXTRA_CFLAGS += -D_JFS_4K
......
# #
# Makefile for the linux lock manager stuff # Makefile for the linux lock manager stuff
# #
# 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 in the main makefile...
O_TARGET := lockd.o
export-objs := lockd_syms.o export-objs := lockd_syms.o
obj-y := clntlock.o clntproc.o host.o svc.o svclock.o svcshare.o \ obj-$(CONFIG_LOCKD) += lockd.o
svcproc.o svcsubs.o mon.o xdr.o lockd_syms.o
obj-$(CONFIG_LOCKD_V4) += xdr4.o svc4proc.o
obj-m := $(O_TARGET) lockd-objs-y := clntlock.o clntproc.o host.o svc.o svclock.o svcshare.o \
svcproc.o svcsubs.o mon.o xdr.o lockd_syms.o
lockd-objs-$(CONFIG_LOCKD_V4) += xdr4.o svc4proc.o
lockd-objs := $(lockd-objs-y)
include $(TOPDIR)/Rules.make include $(TOPDIR)/Rules.make
# #
# Makefile for the Linux minix filesystem routines. # Makefile for the Linux minix filesystem routines.
# #
# 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 (not a .c file).
#
# Note 2! The CFLAGS definitions are now in the main makefile.
O_TARGET := minix.o obj-$(CONFIG_MINIX_FS) += minix.o
obj-y := bitmap.o itree_v1.o itree_v2.o namei.o inode.o file.o dir.o minix-objs := bitmap.o itree_v1.o itree_v2.o namei.o inode.o file.o dir.o
obj-m := $(O_TARGET)
include $(TOPDIR)/Rules.make include $(TOPDIR)/Rules.make
# #
# Makefile for the Linux msdos filesystem routines. # Makefile for the Linux msdos filesystem routines.
# #
# 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 in the main makefile.
O_TARGET := msdos.o
export-objs := msdosfs_syms.o export-objs := msdosfs_syms.o
obj-y := namei.o msdosfs_syms.o obj-$(CONFIG_MSDOS_FS) += msdos.o
obj-m := $(O_TARGET)
msdos-objs := namei.o msdosfs_syms.o
include $(TOPDIR)/Rules.make include $(TOPDIR)/Rules.make
# #
# Makefile for the linux ncp filesystem routines. # Makefile for the linux ncp filesystem routines.
# #
# 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 (not a .c file).
#
# Note 2! The CFLAGS definitions are now in the main makefile.
O_TARGET := ncpfs.o obj-$(CONFIG_NCP_FS) += ncpfs.o
obj-y := dir.o file.o inode.o ioctl.o mmap.o ncplib_kernel.o sock.o \ ncpfs-objs := dir.o file.o inode.o ioctl.o mmap.o ncplib_kernel.o sock.o \
symlink.o ncpsign_kernel.o symlink.o ncpsign_kernel.o
obj-m := $(O_TARGET)
# If you want debugging output, please uncomment the following line # If you want debugging output, please uncomment the following line
# EXTRA_CFLAGS += -DDEBUG_NCP=1 # EXTRA_CFLAGS += -DDEBUG_NCP=1
......
# #
# Makefile for the Linux nfs filesystem routines. # Makefile for the Linux nfs filesystem routines.
# #
# 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 (not a .c file).
#
# Note 2! The CFLAGS definitions are now in the main makefile.
O_TARGET := nfs.o
obj-y := dir.o file.o flushd.o inode.o nfs2xdr.o pagelist.o proc.o \
read.o symlink.o unlink.o write.o
obj-$(CONFIG_ROOT_NFS) += nfsroot.o mount_clnt.o obj-$(CONFIG_NFS_FS) += nfs.o
obj-$(CONFIG_NFS_V3) += nfs3proc.o nfs3xdr.o
obj-m := $(O_TARGET) nfs-y := dir.o file.o flushd.o inode.o nfs2xdr.o pagelist.o \
proc.o read.o symlink.o unlink.o write.o
nfs-$(CONFIG_ROOT_NFS) += nfsroot.o mount_clnt.o
nfs-$(CONFIG_NFS_V3) += nfs3proc.o nfs3xdr.o
nfs-objs := $(nfs-y)
include $(TOPDIR)/Rules.make include $(TOPDIR)/Rules.make
# #
# Makefile for the Linux nfs filesystem routines. # Makefile for the Linux nfs server
# #
# 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 (not a .c file).
#
# Note 2! The CFLAGS definitions are now in the main makefile.
O_TARGET := nfsd.o
obj-y := nfssvc.o nfsctl.o nfsproc.o nfsfh.o vfs.o \
export.o auth.o lockd.o nfscache.o nfsxdr.o \
stats.o
obj-$(CONFIG_NFSD_V3) += nfs3proc.o nfs3xdr.o obj-$(CONFIG_NFSD) += nfsd.o
obj-m := $(O_TARGET) nfsd-y := nfssvc.o nfsctl.o nfsproc.o nfsfh.o vfs.o \
export.o auth.o lockd.o nfscache.o nfsxdr.o stats.o
nfsd-$(CONFIG_NFSD_V3) += nfs3proc.o nfs3xdr.o
nfsd-objs := $(nfsd-y)
include $(TOPDIR)/Rules.make include $(TOPDIR)/Rules.make
...@@ -2,13 +2,9 @@ ...@@ -2,13 +2,9 @@
# Makefile for native language support # Makefile for native language support
# #
O_TARGET = nls.o
export-objs := nls_base.o export-objs := nls_base.o
obj-y := nls_base.o obj-$(CONFIG_NLS) += nls_base.o
obj-m :=
obj-n :=
obj- :=
obj-$(CONFIG_NLS_CODEPAGE_437) += nls_cp437.o obj-$(CONFIG_NLS_CODEPAGE_437) += nls_cp437.o
obj-$(CONFIG_NLS_CODEPAGE_737) += nls_cp737.o obj-$(CONFIG_NLS_CODEPAGE_737) += nls_cp737.o
...@@ -30,14 +26,8 @@ obj-$(CONFIG_NLS_CODEPAGE_932) += nls_cp932.o nls_sjis.o nls_euc-jp.o ...@@ -30,14 +26,8 @@ obj-$(CONFIG_NLS_CODEPAGE_932) += nls_cp932.o nls_sjis.o nls_euc-jp.o
obj-$(CONFIG_NLS_CODEPAGE_936) += nls_cp936.o nls_gb2312.o obj-$(CONFIG_NLS_CODEPAGE_936) += nls_cp936.o nls_gb2312.o
obj-$(CONFIG_NLS_CODEPAGE_949) += nls_cp949.o nls_euc-kr.o obj-$(CONFIG_NLS_CODEPAGE_949) += nls_cp949.o nls_euc-kr.o
obj-$(CONFIG_NLS_CODEPAGE_950) += nls_cp950.o nls_big5.o obj-$(CONFIG_NLS_CODEPAGE_950) += nls_cp950.o nls_big5.o
obj-$(CONFIG_NLS_CODEPAGE_1250) += nls_cp1250.o
obj-$(CONFIG_NLS_CODEPAGE_1251) += nls_cp1251.o obj-$(CONFIG_NLS_CODEPAGE_1251) += nls_cp1251.o
obj-$(CONFIG_NLS_CODEPAGE_1252) += nls_cp1252.o obj-$(CONFIG_NLS_CODEPAGE_1255) += nls_cp1255.o
obj-$(CONFIG_NLS_CODEPAGE_1253) += nls_cp1253.o
obj-$(CONFIG_NLS_CODEPAGE_1254) += nls_cp1254.o
obj-$(CONFIG_NLS_CODEPAGE_1256) += nls_cp1256.o
obj-$(CONFIG_NLS_CODEPAGE_1257) += nls_cp1257.o
obj-$(CONFIG_NLS_CODEPAGE_1258) += nls_cp1258.o
obj-$(CONFIG_NLS_ISO8859_1) += nls_iso8859-1.o obj-$(CONFIG_NLS_ISO8859_1) += nls_iso8859-1.o
obj-$(CONFIG_NLS_ISO8859_2) += nls_iso8859-2.o obj-$(CONFIG_NLS_ISO8859_2) += nls_iso8859-2.o
obj-$(CONFIG_NLS_ISO8859_3) += nls_iso8859-3.o obj-$(CONFIG_NLS_ISO8859_3) += nls_iso8859-3.o
......
# Rules for making the NTFS driver. # Rules for making the NTFS driver.
O_TARGET := ntfs.o obj-$(CONFIG_NTFS_FS) += ntfs.o
obj-y := aops.o attrib.o compress.o debug.o dir.o file.o inode.o mft.o \ ntfs-objs := aops.o attrib.o compress.o debug.o dir.o file.o inode.o mft.o \
mst.o namei.o super.o sysctl.o time.o unistr.o upcase.o mst.o namei.o super.o sysctl.o time.o unistr.o upcase.o
obj-m := $(O_TARGET)
EXTRA_CFLAGS = -DNTFS_VERSION=\"2.0.7\" EXTRA_CFLAGS = -DNTFS_VERSION=\"2.0.7\"
......
# #
# Makefile for the Linux minix filesystem routines. # Makefile for the Linux Sun Openprom filesystem routines.
# #
# 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 (not a .c file).
#
# Note 2! The CFLAGS definitions are now in the main makefile.
O_TARGET := openpromfs.o obj-$(CONFIG_SUN_OPENPROMFS) += openpromfs.o
obj-y := inode.o openpromfs-objs := inode.o
obj-m := $(O_TARGET)
include $(TOPDIR)/Rules.make include $(TOPDIR)/Rules.make
# #
# Makefile for the linux kernel. # Makefile for the linux kernel.
# #
# 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 in the main makefile...
O_TARGET := partitions.o
export-objs := check.o ibm.o msdos.o export-objs := check.o ibm.o msdos.o
......
# #
# Makefile for the Linux proc filesystem routines. # Makefile for the Linux proc filesystem routines.
# #
# 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 (not a .c file).
#
# Note 2! The CFLAGS definitions are now in the main makefile.
O_TARGET := proc.o
export-objs := root.o export-objs := root.o
obj-y := inode.o root.o base.o generic.o array.o \ obj-$(CONFIG_PROC_FS) += proc.o
proc-objs := inode.o root.o base.o generic.o array.o \
kmsg.o proc_tty.o proc_misc.o kcore.o kmsg.o proc_tty.o proc_misc.o kcore.o
ifeq ($(CONFIG_PROC_DEVICETREE),y) ifeq ($(CONFIG_PROC_DEVICETREE),y)
obj-y += proc_devtree.o proc-objs += proc_devtree.o
endif endif
include $(TOPDIR)/Rules.make include $(TOPDIR)/Rules.make
# #
# Makefile for the linux qnx4-filesystem routines. # Makefile for the linux qnx4-filesystem routines.
# #
# 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 in the main makefile...
O_TARGET := qnx4.o obj-$(CONFIG_QNX4FS_FS) += qnx4.o
obj-y := inode.o dir.o namei.o file.o bitmap.o truncate.o fsync.o qnx4-objs := inode.o dir.o namei.o file.o bitmap.o truncate.o fsync.o
obj-m := $(O_TARGET)
include $(TOPDIR)/Rules.make include $(TOPDIR)/Rules.make
...@@ -2,9 +2,8 @@ ...@@ -2,9 +2,8 @@
# Makefile for the linux ramfs routines. # Makefile for the linux ramfs routines.
# #
O_TARGET := ramfs.o obj-$(CONFIG_RAMFS) += ramfs.o
obj-y := inode.o ramfs-objs := inode.o
obj-m := $(O_TARGET)
include $(TOPDIR)/Rules.make include $(TOPDIR)/Rules.make
# #
# Makefile for the linux reiser-filesystem routines. # Makefile for the linux reiser-filesystem routines.
# #
# 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 in the main makefile...
O_TARGET := reiserfs.o obj-$(CONFIG_REISERFS_FS) += reiserfs.o
obj-y := bitmap.o do_balan.o namei.o inode.o file.o dir.o fix_node.o super.o prints.o objectid.o \
lbalance.o ibalance.o stree.o hashes.o buffer2.o tail_conversion.o journal.o resize.o item_ops.o ioctl.o procfs.o
obj-m := $(O_TARGET) reiserfs-objs := bitmap.o do_balan.o namei.o inode.o file.o dir.o fix_node.o \
super.o prints.o objectid.o lbalance.o ibalance.o stree.o \
hashes.o buffer2.o tail_conversion.o journal.o resize.o \
item_ops.o ioctl.o procfs.o
# gcc -O2 (the kernel default) is overaggressive on ppc32 when many inline # gcc -O2 (the kernel default) is overaggressive on ppc32 when many inline
# functions are used. This causes the compiler to advance the stack # functions are used. This causes the compiler to advance the stack
......
# #
# Makefile for the linux romfs filesystem routines. # Makefile for the linux romfs filesystem routines.
# #
# 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 (not a .c file).
#
# Note 2! The CFLAGS definitions are now in the main makefile.
O_TARGET := romfs.o obj-$(CONFIG_ROMFS_FS) += romfs.o
obj-y := inode.o romfs-objs := inode.o
obj-m := $(O_TARGET)
include $(TOPDIR)/Rules.make include $(TOPDIR)/Rules.make
# #
# Makefile for the linux smb-filesystem routines. # Makefile for the linux smb-filesystem routines.
# #
# 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 in the main makefile...
O_TARGET := smbfs.o obj-$(CONFIG_SMB_FS) += smbfs.o
obj-y := proc.o dir.o cache.o sock.o inode.o file.o ioctl.o getopt.o smbfs-objs := proc.o dir.o cache.o sock.o inode.o file.o ioctl.o getopt.o
obj-m := $(O_TARGET)
# If you want debugging output, you may add these flags to the EXTRA_CFLAGS # If you want debugging output, you may add these flags to the EXTRA_CFLAGS
# SMBFS_PARANOIA should normally be enabled. # SMBFS_PARANOIA should normally be enabled.
......
# #
# Makefile for the Linux SystemV/Coherent filesystem routines. # Makefile for the Linux SystemV/Coherent filesystem routines.
# #
# 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 (not a .c file).
#
# Note 2! The CFLAGS definitions are now in the main makefile.
O_TARGET := sysv.o obj-$(CONFIG_SYSV_FS) += sysv.o
obj-y := ialloc.o balloc.o inode.o itree.o file.o dir.o \ sysv-objs := ialloc.o balloc.o inode.o itree.o file.o dir.o \
namei.o super.o symlink.o namei.o super.o symlink.o
obj-m := $(O_TARGET)
include $(TOPDIR)/Rules.make include $(TOPDIR)/Rules.make
# #
# Makefile for the linux udf-filesystem routines. # Makefile for the linux udf-filesystem routines.
# #
# 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 .o file).
#
# Note 2! The CFLAGS definitions are now in the main makefile..
O_TARGET := udf.o obj-$(CONFIG_UDF_FS) += udf.o
obj-y := balloc.o dir.o file.o ialloc.o inode.o lowlevel.o namei.o \ udf-objs := balloc.o dir.o file.o ialloc.o inode.o lowlevel.o namei.o \
partition.o super.o truncate.o symlink.o fsync.o \ partition.o super.o truncate.o symlink.o fsync.o \
crc.o directory.o misc.o udftime.o unicode.o crc.o directory.o misc.o udftime.o unicode.o
obj-m := $(O_TARGET)
include $(TOPDIR)/Rules.make include $(TOPDIR)/Rules.make
# #
# Makefile for the Linux ufs filesystem routines. # Makefile for the Linux ufs filesystem routines.
# #
# 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 (not a .c file).
#
# Note 2! The CFLAGS definitions are now in the main makefile.
O_TARGET := ufs.o obj-$(CONFIG_UFS_FS) += ufs.o
obj-y := balloc.o cylinder.o dir.o file.o ialloc.o inode.o \ ufs-objs := balloc.o cylinder.o dir.o file.o ialloc.o inode.o \
namei.o super.o symlink.o truncate.o util.o namei.o super.o symlink.o truncate.o util.o
obj-m := $(O_TARGET)
include $(TOPDIR)/Rules.make include $(TOPDIR)/Rules.make
# #
# Makefile for the umsdos Unix-like filesystem routines. # Makefile for the umsdos Unix-like filesystem routines.
# #
# 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 (not a .c file).
#
# Note 2: the CFLAGS definitions are now in the main makefile.
O_TARGET := umsdos.o
obj-y := dir.o inode.o ioctl.o mangle.o namei.o rdir.o emd.o obj-$(CONFIG_UMSDOS) += umsdos.o
obj-m := $(O_TARGET) umsdos-objs := dir.o inode.o ioctl.o mangle.o namei.o rdir.o emd.o
include $(TOPDIR)/Rules.make include $(TOPDIR)/Rules.make
......
# #
# Makefile for the linux vfat-filesystem routines. # Makefile for the linux vfat-filesystem routines.
# #
# 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 in the main makefile...
O_TARGET := vfat.o
export-objs := vfatfs_syms.o export-objs := vfatfs_syms.o
obj-y := namei.o vfatfs_syms.o obj-$(CONFIG_VFAT_FS) += vfat.o
obj-m := $(O_TARGET)
vfat-objs := namei.o vfatfs_syms.o
include $(TOPDIR)/Rules.make include $(TOPDIR)/Rules.make
...@@ -23,11 +23,8 @@ endif ...@@ -23,11 +23,8 @@ endif
obj-$(CONFIG_CRC32) += crc32.o obj-$(CONFIG_CRC32) += crc32.o
subdir-$(CONFIG_ZLIB_INFLATE) += zlib_inflate obj-$(CONFIG_ZLIB_INFLATE) += zlib_inflate/
subdir-$(CONFIG_ZLIB_DEFLATE) += zlib_deflate obj-$(CONFIG_ZLIB_DEFLATE) += zlib_deflate/
# Include the subdirs, if necessary.
obj-y += $(join $(subdir-y),$(subdir-y:%=/%.o))
include $(TOPDIR)/drivers/net/Makefile.lib include $(TOPDIR)/drivers/net/Makefile.lib
include $(TOPDIR)/drivers/usb/class/Makefile.lib include $(TOPDIR)/drivers/usb/class/Makefile.lib
......
...@@ -6,13 +6,10 @@ ...@@ -6,13 +6,10 @@
# decompression code. # decompression code.
# #
O_TARGET := zlib_deflate.o
export-objs := deflate_syms.o export-objs := deflate_syms.o
obj-y := deflate.o deftree.o deflate_syms.o obj-$(CONFIG_ZLIB_DEFLATE) += zlib_deflate.o
obj-m := $(O_TARGET)
EXTRA_CFLAGS += -I $(TOPDIR)/lib/zlib_deflate zlib_deflate-objs := deflate.o deftree.o deflate_syms.o
include $(TOPDIR)/Rules.make include $(TOPDIR)/Rules.make
...@@ -13,14 +13,11 @@ ...@@ -13,14 +13,11 @@
# uncompression can be done without blocking on allocation). # uncompression can be done without blocking on allocation).
# #
O_TARGET := zlib_inflate.o
export-objs := inflate_syms.o export-objs := inflate_syms.o
obj-y := infblock.o infcodes.o inffast.o inflate.o \ obj-$(CONFIG_ZLIB_INFLATE) += zlib_inflate.o
inftrees.o infutil.o inflate_syms.o
obj-m := $(O_TARGET)
EXTRA_CFLAGS += -I $(TOPDIR)/lib/zlib_inflate zlib_inflate-objs := infblock.o infcodes.o inffast.o inflate.o \
inftrees.o infutil.o inflate_syms.o
include $(TOPDIR)/Rules.make include $(TOPDIR)/Rules.make
# #
# Makefile for the Linux 802.x protocol layers. # Makefile for the Linux 802.x protocol layers.
# #
# 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...
O_TARGET := 802.o
export-objs = llc_macinit.o p8022.o psnap.o export-objs = llc_macinit.o p8022.o psnap.o
......
# #
# Makefile for the Linux VLAN layer. # Makefile for the Linux VLAN layer.
# #
# 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...
O_TARGET := 8021q.o obj-$(CONFIG_VLAN_8021Q) += 8021q.o
obj-y := vlan.o vlanproc.o vlan_dev.o 8021q-objs := vlan.o vlanproc.o vlan_dev.o
obj-m := $(O_TARGET)
include $(TOPDIR)/Rules.make include $(TOPDIR)/Rules.make
...@@ -7,47 +7,43 @@ ...@@ -7,47 +7,43 @@
O_TARGET := network.o O_TARGET := network.o
mod-subdirs := ipv4/netfilter ipv6/netfilter ipx irda bluetooth atm netlink sched mod-subdirs := ipv4 ipv4/netfilter ipv6/netfilter ipx irda bluetooth atm netlink sched
export-objs := netsyms.o export-objs := netsyms.o
subdir-y := core ethernet obj-y := socket.o core/
subdir-m := ipv4 # hum?
obj-$(CONFIG_NET) += ethernet/ 802/ sched/ netlink/
subdir-$(CONFIG_NET) += 802 sched netlink obj-$(CONFIG_INET) += ipv4/
subdir-$(CONFIG_INET) += ipv4 obj-$(CONFIG_NETFILTER) += ipv4/netfilter/
subdir-$(CONFIG_NETFILTER) += ipv4/netfilter obj-$(CONFIG_UNIX) += unix/
subdir-$(CONFIG_UNIX) += unix obj-$(CONFIG_IPV6) += ipv6/
subdir-$(CONFIG_IPV6) += ipv6
ifneq ($(CONFIG_IPV6),n) ifneq ($(CONFIG_IPV6),n)
ifneq ($(CONFIG_IPV6),) ifneq ($(CONFIG_IPV6),)
subdir-$(CONFIG_NETFILTER) += ipv6/netfilter obj-$(CONFIG_NETFILTER) += ipv6/netfilter/
endif endif
endif endif
subdir-$(CONFIG_KHTTPD) += khttpd obj-$(CONFIG_KHTTPD) += khttpd/
subdir-$(CONFIG_PACKET) += packet obj-$(CONFIG_PACKET) += packet/
subdir-$(CONFIG_NET_SCHED) += sched obj-$(CONFIG_NET_SCHED) += sched/
subdir-$(CONFIG_BRIDGE) += bridge obj-$(CONFIG_BRIDGE) += bridge/
subdir-$(CONFIG_IPX) += ipx obj-$(CONFIG_IPX) += ipx/
subdir-$(CONFIG_ATALK) += appletalk obj-$(CONFIG_ATALK) += appletalk/
subdir-$(CONFIG_WAN_ROUTER) += wanrouter obj-$(CONFIG_WAN_ROUTER) += wanrouter/
subdir-$(CONFIG_X25) += x25 obj-$(CONFIG_X25) += x25/
subdir-$(CONFIG_LAPB) += lapb obj-$(CONFIG_LAPB) += lapb/
subdir-$(CONFIG_NETROM) += netrom obj-$(CONFIG_NETROM) += netrom/
subdir-$(CONFIG_ROSE) += rose obj-$(CONFIG_ROSE) += rose/
subdir-$(CONFIG_AX25) += ax25 obj-$(CONFIG_AX25) += ax25/
subdir-$(CONFIG_IRDA) += irda obj-$(CONFIG_IRDA) += irda/
subdir-$(CONFIG_BLUEZ) += bluetooth obj-$(CONFIG_BLUEZ) += bluetooth/
subdir-$(CONFIG_SUNRPC) += sunrpc obj-$(CONFIG_SUNRPC) += sunrpc/
subdir-$(CONFIG_ATM) += atm obj-$(CONFIG_ATM) += atm/
subdir-$(CONFIG_DECNET) += decnet obj-$(CONFIG_DECNET) += decnet/
subdir-$(CONFIG_ECONET) += econet obj-$(CONFIG_ECONET) += econet/
subdir-$(CONFIG_VLAN_8021Q) += 8021q obj-$(CONFIG_VLAN_8021Q) += 8021q/
obj-y := socket.o $(join $(subdir-y), $(patsubst %,/%.o,$(notdir $(subdir-y))))
ifeq ($(CONFIG_NET),y) ifeq ($(CONFIG_NET),y)
obj-$(CONFIG_MODULES) += netsyms.o obj-$(CONFIG_MODULES) += netsyms.o
obj-$(CONFIG_SYSCTL) += sysctl_net.o obj-$(CONFIG_SYSCTL) += sysctl_net.o
......
# #
# Makefile for the Linux AppleTalk layer. # Makefile for the Linux AppleTalk layer.
# #
# 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...
O_TARGET := appletalk.o
export-objs = ddp.o export-objs = ddp.o
obj-y := aarp.o ddp.o obj-$(CONFIG_ATALK) += appletalk.o
obj-m := $(O_TARGET)
obj-$(CONFIG_SYSCTL) += sysctl_net_atalk.o appletalk-y := aarp.o ddp.o
appletalk-$(CONFIG_SYSCTL) += sysctl_net_atalk.o
appletalk-objs := $(appletalk-y)
include $(TOPDIR)/Rules.make include $(TOPDIR)/Rules.make
...@@ -2,28 +2,15 @@ ...@@ -2,28 +2,15 @@
# Makefile for the ATM Protocol Families. # Makefile for the ATM Protocol Families.
# #
O_TARGET := atm.o
export-objs := common.o atm_misc.o raw.o resources.o ipcommon.o proc.o export-objs := common.o atm_misc.o raw.o resources.o ipcommon.o proc.o
mpoa-objs := mpc.o mpoa_caches.o mpoa_proc.o mpoa-objs := mpc.o mpoa_caches.o mpoa_proc.o
obj-$(CONFIG_ATM) := addr.o pvc.o signaling.o svc.o common.o atm_misc.o raw.o resources.o obj-$(CONFIG_ATM) := addr.o pvc.o signaling.o svc.o common.o atm_misc.o raw.o resources.o
ifeq ($(CONFIG_ATM_CLIP),y) obj-$(CONFIG_ATM_CLIP) += clip.o ipcommon.o
obj-y += clip.o obj-$(CONFIG_NET_SCH_ATM) += ipcommon.o
NEED_IPCOM = ipcommon.o obj-$(CONFIG_PROC_FS) += proc.o
endif
ifeq ($(CONFIG_NET_SCH_ATM),y)
NEED_IPCOM = ipcommon.o
endif
obj-y += $(NEED_IPCOM)
ifeq ($(CONFIG_PROC_FS),y)
obj-y += proc.o
endif
obj-$(CONFIG_ATM_LANE) += lec.o obj-$(CONFIG_ATM_LANE) += lec.o
obj-$(CONFIG_ATM_MPOA) += mpoa.o obj-$(CONFIG_ATM_MPOA) += mpoa.o
......
# #
# Makefile for the Linux AX.25 layer. # Makefile for the Linux AX.25 layer.
# #
# 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...
O_TARGET := ax25.o
export-objs := af_ax25.o export-objs := af_ax25.o
obj-y := ax25_addr.o ax25_dev.o ax25_iface.o ax25_in.o ax25_ip.o ax25_out.o \ obj-$(CONFIG_AX25) += ax25.o
ax25-y := ax25_addr.o ax25_dev.o ax25_iface.o ax25_in.o ax25_ip.o ax25_out.o \
ax25_route.o ax25_std_in.o ax25_std_subr.o ax25_std_timer.o \ ax25_route.o ax25_std_in.o ax25_std_subr.o ax25_std_timer.o \
ax25_subr.o ax25_timer.o ax25_uid.o af_ax25.o ax25_subr.o ax25_timer.o ax25_uid.o af_ax25.o
ax25-$(CONFIG_AX25_DAMA_SLAVE) += ax25_ds_in.o ax25_ds_subr.o ax25_ds_timer.o
obj-m := $(O_TARGET) ax25-$(CONFIG_SYSCTL) += sysctl_net_ax25.o
ax25-objs := $(ax25-y)
obj-$(CONFIG_AX25_DAMA_SLAVE) += ax25_ds_in.o ax25_ds_subr.o ax25_ds_timer.o
obj-$(CONFIG_SYSCTL) += sysctl_net_ax25.o
include $(TOPDIR)/Rules.make include $(TOPDIR)/Rules.make
# #
# Makefile for the Bluetooth subsystem # Makefile for the Bluetooth subsystem
# #
O_TARGET := bluetooth.o
list-multi := bluez.o
export-objs := syms.o export-objs := syms.o
bluez-objs := af_bluetooth.o hci_core.o hci_conn.o hci_event.o hci_sock.o lib.o syms.o
obj-$(CONFIG_BLUEZ) += bluez.o obj-$(CONFIG_BLUEZ) += bluez.o
obj-$(CONFIG_BLUEZ_L2CAP) += l2cap.o obj-$(CONFIG_BLUEZ_L2CAP) += l2cap.o
obj-$(CONFIG_BLUEZ_SCO) += sco.o obj-$(CONFIG_BLUEZ_SCO) += sco.o
include $(TOPDIR)/Rules.make bluez-objs := af_bluetooth.o hci_core.o hci_conn.o hci_event.o hci_sock.o lib.o syms.o
bluez.o: $(bluez-objs) include $(TOPDIR)/Rules.make
$(LD) -r -o $@ $(bluez-objs)
# #
# Makefile for the IEEE 802.1d ethernet bridging layer. # Makefile for the IEEE 802.1d ethernet bridging layer.
# #
# 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...
O_TARGET := bridge.o obj-$(CONFIG_BRIDGE) += bridge.o
obj-y := br.o br_device.o br_fdb.o br_forward.o br_if.o br_input.o \
bridge-objs := br.o br_device.o br_fdb.o br_forward.o br_if.o br_input.o \
br_ioctl.o br_notify.o br_stp.o br_stp_bpdu.o \ br_ioctl.o br_notify.o br_stp.o br_stp_bpdu.o \
br_stp_if.o br_stp_timer.o br_stp_if.o br_stp_timer.o
obj-m := $(O_TARGET)
include $(TOPDIR)/Rules.make include $(TOPDIR)/Rules.make
# #
# Makefile for the Linux networking core. # Makefile for the Linux networking core.
# #
# 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...
O_TARGET := core.o
export-objs := netfilter.o profile.o export-objs := netfilter.o profile.o
......
# Note 2! The CFLAGS definition is now in the main makefile...
O_TARGET := decnet.o obj-$(CONFIG_DECNET) += decnet.o
obj-y := af_decnet.o dn_nsp_in.o dn_nsp_out.o dn_route.o dn_dev.o dn_neigh.o dn_timer.o
obj-m := $(O_TARGET)
obj-$(CONFIG_DECNET_ROUTER) += dn_fib.o dn_rules.o dn_table.o decnet-y := af_decnet.o dn_nsp_in.o dn_nsp_out.o dn_route.o dn_dev.o dn_neigh.o dn_timer.o
obj-$(CONFIG_DECNET_FW) += dn_fw.o decnet-$(CONFIG_DECNET_ROUTER) += dn_fib.o dn_rules.o dn_table.o
decnet-$(CONFIG_DECNET_FW) += dn_fw.o
obj-y += sysctl_net_decnet.o decnet-y += sysctl_net_decnet.o
decnet-objs := $(decnet-y)
include $(TOPDIR)/Rules.make include $(TOPDIR)/Rules.make
# #
# Makefile for Econet support code. # Makefile for Econet support code.
# #
# 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...
O_TARGET := econet.o obj-$(CONFIG_ECONET) += econet.o
obj-y := af_econet.o econet-objs := af_econet.o
obj-m := $(O_TARGET)
include $(TOPDIR)/Rules.make include $(TOPDIR)/Rules.make
# #
# Makefile for the Linux Ethernet layer. # Makefile for the Linux Ethernet layer.
# #
# 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...
O_TARGET := ethernet.o
OBJS := eth.o
ifeq ($(CONFIG_SYSCTL),y)
OBJS += sysctl_net_ether.o
endif
ifdef CONFIG_IPX
OBJ2 := pe2.o
endif
ifdef CONFIG_ATALK
OBJ2 := pe2.o
endif
obj-$(CONFIG_NET) := $(OBJS) $(OBJ2) obj-y += eth.o
obj-$(CONFIG_SYSCTL) += sysctl_net_ether.o
obj-$(subst m,y,$(CONFIG_IPX)) += pe2.o
obj-$(subst m,y,$(CONFIG_ATALK)) += pe2.o
include $(TOPDIR)/Rules.make include $(TOPDIR)/Rules.make
# #
# Makefile for the Linux TCP/IP (INET) layer. # Makefile for the Linux TCP/IP (INET) layer.
# #
# 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...
O_TARGET := ipv4.o
export-objs = ipip.o ip_gre.o export-objs = ipip.o ip_gre.o
......
...@@ -2,9 +2,9 @@ ...@@ -2,9 +2,9 @@
# Makefile for the netfilter modules on top of IPv4. # Makefile for the netfilter modules on top of IPv4.
# #
O_TARGET := netfilter.o export-objs := ip_conntrack_standalone.o ip_fw_compat.o ip_nat_standalone.o \
ip_tables.o arp_tables.o ip_conntrack_ftp.o \
export-objs = ip_conntrack_standalone.o ip_fw_compat.o ip_nat_standalone.o ip_tables.o arp_tables.o ip_conntrack_irc.o
# objects for the conntrack and NAT core (used by standalone and backw. compat) # objects for the conntrack and NAT core (used by standalone and backw. compat)
ip_nf_conntrack-objs := ip_conntrack_core.o ip_conntrack_proto_generic.o ip_conntrack_proto_tcp.o ip_conntrack_proto_udp.o ip_conntrack_proto_icmp.o ip_nf_conntrack-objs := ip_conntrack_core.o ip_conntrack_proto_generic.o ip_conntrack_proto_tcp.o ip_conntrack_proto_udp.o ip_conntrack_proto_icmp.o
...@@ -25,14 +25,7 @@ obj-$(CONFIG_IP_NF_CONNTRACK) += ip_conntrack.o ...@@ -25,14 +25,7 @@ obj-$(CONFIG_IP_NF_CONNTRACK) += ip_conntrack.o
# connection tracking helpers # connection tracking helpers
obj-$(CONFIG_IP_NF_FTP) += ip_conntrack_ftp.o obj-$(CONFIG_IP_NF_FTP) += ip_conntrack_ftp.o
ifdef CONFIG_IP_NF_NAT_FTP
export-objs += ip_conntrack_ftp.o
endif
obj-$(CONFIG_IP_NF_IRC) += ip_conntrack_irc.o obj-$(CONFIG_IP_NF_IRC) += ip_conntrack_irc.o
ifdef CONFIG_IP_NF_NAT_IRC
export-objs += ip_conntrack_irc.o
endif
# NAT helpers # NAT helpers
obj-$(CONFIG_IP_NF_NAT_FTP) += ip_nat_ftp.o obj-$(CONFIG_IP_NF_NAT_FTP) += ip_nat_ftp.o
......
# #
# Makefile for the Linux TCP/IP (INET6) layer. # Makefile for the Linux TCP/IP (INET6) layer.
# #
# 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).
#
O_TARGET := ipv6.o
export-objs := ipv6_syms.o export-objs := ipv6_syms.o
obj-y := af_inet6.o ip6_output.o ip6_input.o addrconf.o sit.o \ obj-$(CONFIG_IPV6) += ipv6.o
ipv6-objs := af_inet6.o ip6_output.o ip6_input.o addrconf.o sit.o \
route.o ip6_fib.o ipv6_sockglue.o ndisc.o udp.o raw.o \ route.o ip6_fib.o ipv6_sockglue.o ndisc.o udp.o raw.o \
protocol.o icmp.o mcast.o reassembly.o tcp_ipv6.o \ protocol.o icmp.o mcast.o reassembly.o tcp_ipv6.o \
exthdrs.o sysctl_net_ipv6.o datagram.o proc.o \ exthdrs.o sysctl_net_ipv6.o datagram.o proc.o \
ip6_flowlabel.o ipv6_syms.o ip6_flowlabel.o ipv6_syms.o
obj-m := $(O_TARGET)
#obj-$(CONFIG_IPV6_FIREWALL) += ip6_fw.o #obj-$(CONFIG_IPV6_FIREWALL) += ip6_fw.o
include $(TOPDIR)/Rules.make include $(TOPDIR)/Rules.make
# #
# Makefile for the netfilter modules on top of IPv6. # Makefile for the netfilter modules on top of IPv6.
# #
# 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...
O_TARGET := netfilter.o
export-objs := ip6_tables.o export-objs := ip6_tables.o
......
# #
# Makefile for the Linux IPX layer. # Makefile for the Linux IPX layer.
# #
# 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...
# We only get in/to here if CONFIG_IPX = 'y' or 'm'
O_TARGET := ipx.o
export-objs = af_ipx.o af_spx.o export-objs = af_ipx.o af_spx.o
obj-y := af_ipx.o obj-$(CONFIG_IPX) += ipx.o
ifeq ($(CONFIG_IPX),m)
obj-m += $(O_TARGET)
endif
obj-$(CONFIG_SYSCTL) += sysctl_net_ipx.o ipx-y := af_ipx.o
obj-$(CONFIG_SPX) += af_spx.o ipx-$(CONFIG_SYSCTL) += sysctl_net_ipx.o
ipx-$(CONFIG_SPX) += af_spx.o
ipx-objs := $(ipx-y)
include $(TOPDIR)/Rules.make include $(TOPDIR)/Rules.make
# #
# Makefile for the Linux IrDA protocol layer. # Makefile for the Linux IrDA protocol layer.
# #
# 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...
O_TARGET := irda.o
export-objs := irsyms.o export-objs := irsyms.o
obj-y := iriap.o iriap_event.o irlmp.o irlmp_event.o irlmp_frame.o \ obj-$(CONFIG_IRDA) += irda.o
irlap.o irlap_event.o irlap_frame.o timer.o qos.o irqueue.o \ obj-$(CONFIG_IRLAN) += irlan/
irttp.o irda_device.o irias_object.o crc.o wrapper.o af_irda.o \ obj-$(CONFIG_IRNET) += irnet/
discovery.o parameters.o irsyms.o obj-$(CONFIG_IRCOMM) += ircomm/
ifeq ($(CONFIG_IRDA),m) irda-y := iriap.o iriap_event.o irlmp.o irlmp_event.o irlmp_frame.o \
obj-m := $(O_TARGET) irlap.o irlap_event.o irlap_frame.o timer.o qos.o irqueue.o \
endif irttp.o irda_device.o irias_object.o crc.o wrapper.o af_irda.o \
discovery.o parameters.o irsyms.o
obj-$(CONFIG_PROC_FS) += irproc.o irda-$(CONFIG_PROC_FS) += irproc.o
obj-$(CONFIG_SYSCTL) += irsysctl.o irda-$(CONFIG_SYSCTL) += irsysctl.o
irda-objs := $(irda-y)
subdir-$(CONFIG_IRLAN) += irlan
subdir-$(CONFIG_IRNET) += irnet
subdir-$(CONFIG_IRCOMM) += ircomm
ifeq ($(CONFIG_IRLAN),y)
obj-y += irlan/irlan.o
endif
ifeq ($(CONFIG_IRNET),y)
obj-y += irnet/irnet.o
endif
ifeq ($(CONFIG_IRCOMM),y)
obj-y += ircomm/ircomm_and_tty.o
endif
include $(TOPDIR)/Rules.make include $(TOPDIR)/Rules.make
...@@ -2,14 +2,12 @@ ...@@ -2,14 +2,12 @@
# Makefile for the Linux IrDA IrCOMM protocol layer. # Makefile for the Linux IrDA IrCOMM protocol layer.
# #
O_TARGET := ircomm_and_tty.o
export-objs := ircomm_core.o export-objs := ircomm_core.o
obj-$(CONFIG_IRCOMM) += ircomm.o ircomm-tty.o
ircomm-objs := ircomm_core.o ircomm_event.o ircomm_lmp.o ircomm_ttp.o ircomm-objs := ircomm_core.o ircomm_event.o ircomm_lmp.o ircomm_ttp.o
ircomm-tty-objs := ircomm_tty.o ircomm_tty_attach.o ircomm_tty_ioctl.o ircomm_param.o ircomm-tty-objs := ircomm_tty.o ircomm_tty_attach.o ircomm_tty_ioctl.o ircomm_param.o
obj-$(CONFIG_IRCOMM) += ircomm.o ircomm-tty.o
include $(TOPDIR)/Rules.make include $(TOPDIR)/Rules.make
# #
# Makefile for the Linux IrDA IrLAN protocol layer. # Makefile for the Linux IrDA IrLAN protocol layer.
# #
# 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...
O_TARGET := irlan.o obj-$(CONFIG_IRLAN) += irlan.o
obj-y := irlan_common.o irlan_eth.o irlan_event.o irlan_client.o irlan_provider.o irlan_filter.o irlan_provider_event.o irlan_client_event.o irlan-objs := irlan_common.o irlan_eth.o irlan_event.o irlan_client.o irlan_provider.o irlan_filter.o irlan_provider_event.o irlan_client_event.o
obj-m := $(O_TARGET)
include $(TOPDIR)/Rules.make include $(TOPDIR)/Rules.make
# #
# Makefile for the Linux IrDA IrNET protocol layer. # Makefile for the Linux IrDA IrNET protocol layer.
# #
# 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...
MOD_LIST_NAME := IRDA_MODULES obj-$(CONFIG_IRNET) += irnet.o
O_TARGET := irnet.o
obj-y := irnet_ppp.o irnet_irda.o irnet-objs := irnet_ppp.o irnet_irda.o
obj-m := $(O_TARGET)
include $(TOPDIR)/Rules.make include $(TOPDIR)/Rules.make
# #
# Makefile for kHTTPd # Makefile for kHTTPd
# #
# 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...
O_TARGET := khttpd.o
obj-m := $(O_TARGET) obj-$(CONFIG_KHTTPD) += khttpd.o
obj-y := main.o accept.o datasending.o logging.o misc.o rfc.o rfc_time.o security.o \
sockets.o sysctl.o userspace.o waitheaders.o
khttpd-objs := main.o accept.o datasending.o logging.o misc.o rfc.o \
rfc_time.o security.o sockets.o sysctl.o userspace.o \
waitheaders.o
include $(TOPDIR)/Rules.make include $(TOPDIR)/Rules.make
......
# #
# Makefile for the Linux LAPB layer. # Makefile for the Linux LAPB layer.
# #
# 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...
O_TARGET := lapb.o
export-objs := lapb_iface.o export-objs := lapb_iface.o
obj-y := lapb_in.o lapb_out.o lapb_subr.o lapb_timer.o lapb_iface.o obj-$(CONFIG_LAPB) += lapb.o
obj-m := $(O_TARGET)
lapb-objs := lapb_in.o lapb_out.o lapb_subr.o lapb_timer.o lapb_iface.o
include $(TOPDIR)/Rules.make include $(TOPDIR)/Rules.make
# #
# Makefile for the netlink driver. # Makefile for the netlink driver.
# #
# 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...
O_TARGET := netlink.o
export-objs := af_netlink.o export-objs := af_netlink.o
obj-y := af_netlink.o obj-y := af_netlink.o
obj-$(CONFIG_NETLINK_DEV) += netlink_dev.o
obj-m :=
obj-$(CONFIG_NETLINK_DEV) += netlink_dev.o
include $(TOPDIR)/Rules.make include $(TOPDIR)/Rules.make
# #
# Makefile for the Linux NET/ROM layer. # Makefile for the Linux NET/ROM layer.
# #
# 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...
O_TARGET := netrom.o
obj-y := af_netrom.o nr_dev.o nr_in.o nr_loopback.o nr_out.o nr_route.o \ obj-$(CONFIG_NETROM) += netrom.o
nr_subr.o nr_timer.o
obj-m := $(O_TARGET)
obj-$(CONFIG_SYSCTL) += sysctl_net_netrom.o netrom-y := af_netrom.o nr_dev.o nr_in.o nr_loopback.o \
nr_out.o nr_route.o nr_subr.o nr_timer.o
netrom-$(CONFIG_SYSCTL) += sysctl_net_netrom.o
netrom-objs := $(netrom-y)
include $(TOPDIR)/Rules.make include $(TOPDIR)/Rules.make
# #
# Makefile for the packet AF. # Makefile for the packet AF.
# #
# 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...
O_TARGET := packet.o
obj-$(CONFIG_PACKET) += af_packet.o obj-$(CONFIG_PACKET) += af_packet.o
......
# #
# Makefile for the Linux Rose (X.25 PLP) layer. # Makefile for the Linux Rose (X.25 PLP) layer.
# #
# 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...
O_TARGET := rose.o
obj-y := af_rose.o rose_dev.o rose_in.o rose_link.o rose_loopback.o \ obj-$(CONFIG_ROSE) += rose.o
rose_out.o rose_route.o rose_subr.o rose_timer.o
obj-m := $(O_TARGET)
obj-$(CONFIG_SYSCTL) += sysctl_net_rose.o rose-y := af_rose.o rose_dev.o rose_in.o rose_link.o rose_loopback.o \
rose_out.o rose_route.o rose_subr.o rose_timer.o
rose-$(CONFIG_SYSCTL) += sysctl_net_rose.o
rose-objs := $(rose-y)
include $(TOPDIR)/Rules.make include $(TOPDIR)/Rules.make
...@@ -2,11 +2,8 @@ ...@@ -2,11 +2,8 @@
# Makefile for the Linux Traffic Control Unit. # Makefile for the Linux Traffic Control Unit.
# #
O_TARGET := sched.o
obj-y := sch_generic.o obj-y := sch_generic.o
obj-$(CONFIG_NET_SCHED) += sch_api.o sch_fifo.o obj-$(CONFIG_NET_SCHED) += sch_api.o sch_fifo.o
obj-$(CONFIG_NET_ESTIMATOR) += estimator.o obj-$(CONFIG_NET_ESTIMATOR) += estimator.o
obj-$(CONFIG_NET_CLS) += cls_api.o obj-$(CONFIG_NET_CLS) += cls_api.o
......
# #
# Makefile for Linux kernel SUN RPC # Makefile for Linux kernel SUN RPC
# #
# 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...
O_TARGET := sunrpc.o obj-$(CONFIG_SUNRPC) += sunrpc.o
export-objs := sunrpc_syms.o export-objs := sunrpc_syms.o
obj-y := clnt.o xprt.o sched.o \ sunrpc-y := clnt.o xprt.o sched.o \
auth.o auth_null.o auth_unix.o \ auth.o auth_null.o auth_unix.o \
svc.o svcsock.o svcauth.o \ svc.o svcsock.o svcauth.o \
pmap_clnt.o xdr.o sunrpc_syms.o pmap_clnt.o xdr.o sunrpc_syms.o
sunrpc-$(CONFIG_PROC_FS) += stats.o
obj-$(CONFIG_PROC_FS) += stats.o sunrpc-$(CONFIG_SYSCTL) += sysctl.o
obj-$(CONFIG_SYSCTL) += sysctl.o sunrpc-objs := $(sunrpc-y)
obj-m := $(O_TARGET)
include $(TOPDIR)/Rules.make include $(TOPDIR)/Rules.make
# #
# Makefile for the Linux unix domain socket layer. # Makefile for the Linux unix domain socket layer.
# #
# 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...
O_TARGET := unix.o
obj-y := af_unix.o garbage.o obj-$(CONFIG_UNIX) += unix.o
obj-m := $(O_TARGET)
obj-$(CONFIG_SYSCTL) += sysctl_net_unix.o unix-y := af_unix.o garbage.o
unix-$(CONFIG_SYSCTL) += sysctl_net_unix.o
unix-objs := $(unix-y)
include $(TOPDIR)/Rules.make include $(TOPDIR)/Rules.make
# #
# Makefile for the Linux WAN router layer. # Makefile for the Linux WAN router layer.
# #
# 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...
O_TARGET := wanrouter.o
export-objs := wanmain.o export-objs := wanmain.o
obj-y := wanproc.o wanmain.o obj-$(CONFIG_WAN_ROUTER) += wanrouter.o
obj-m := $(O_TARGET)
ifneq ($(CONFIG_VENDOR_SANGOMA),n) wanrouter-objs := wanproc.o wanmain.o
obj-m += $(O_TARGET)
endif
include $(TOPDIR)/Rules.make include $(TOPDIR)/Rules.make
# #
# Makefile for the Linux X.25 Packet layer. # Makefile for the Linux X.25 Packet layer.
# #
# 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...
O_TARGET := x25.o
obj-y := af_x25.o x25_dev.o x25_facilities.o x25_in.o x25_link.o x25_out.o \ obj-$(CONFIG_X25) += x25.o
x25_route.o x25_subr.o x25_timer.o
obj-m := $(O_TARGET)
obj-$(CONFIG_SYSCTL) += sysctl_net_x25.o x25-y := af_x25.o x25_dev.o x25_facilities.o x25_in.o \
x25_link.o x25_out.o x25_route.o x25_subr.o \
x25_timer.o
x25-$(CONFIG_SYSCTL) += sysctl_net_x25.o
x25-objs := $(x25-y)
include $(TOPDIR)/Rules.make include $(TOPDIR)/Rules.make
...@@ -8,25 +8,13 @@ export-objs := sound_core.o ...@@ -8,25 +8,13 @@ export-objs := sound_core.o
mod-subdirs := oss core i2c drivers isa pci ppc synth mod-subdirs := oss core i2c drivers isa pci ppc synth
obj-$(CONFIG_SOUND) += soundcore.o obj-$(CONFIG_SOUND) += soundcore.o
obj-$(CONFIG_SOUND_PRIME) += oss/
obj-$(CONFIG_SND) += core/ i2c/ drivers/ isa/ pci/ ppc/ arm/ synth/
subdir-$(CONFIG_SOUND_PRIME) += oss
ifeq ($(CONFIG_SOUND_PRIME),y)
obj-y += oss/_oss.o
endif
subdir-$(CONFIG_SND) += core i2c drivers isa pci ppc arm synth
ifeq ($(CONFIG_SND),y) ifeq ($(CONFIG_SND),y)
obj-y += core/_core.o i2c/_i2c.o
obj-y += drivers/_drivers.o
obj-y += isa/_isa.o
obj-y += pci/_pci.o
obj-y += arm/_arm.o
obj-y += ppc/_ppc.o
obj-y += synth/_synth.o
obj-y += last.o obj-y += last.o
endif endif
soundcore-objs := sound_core.o sound_firmware.o soundcore-objs := sound_core.o sound_firmware.o
include $(TOPDIR)/Rules.make include $(TOPDIR)/Rules.make
...@@ -2,8 +2,6 @@ ...@@ -2,8 +2,6 @@
# Makefile for ALSA # Makefile for ALSA
# #
O_TARGET := _arm.o
snd-sa11xx-uda1341-objs := sa11xx-uda1341.o snd-sa11xx-uda1341-objs := sa11xx-uda1341.o
# Toplevel Module Dependency # Toplevel Module Dependency
......
...@@ -3,8 +3,6 @@ ...@@ -3,8 +3,6 @@
# Copyright (c) 1999,2001 by Jaroslav Kysela <perex@suse.cz> # Copyright (c) 1999,2001 by Jaroslav Kysela <perex@suse.cz>
# #
O_TARGET := _core.o
export-objs := sound.o pcm.o pcm_lib.o rawmidi.o timer.o rtctimer.o hwdep.o export-objs := sound.o pcm.o pcm_lib.o rawmidi.o timer.o rtctimer.o hwdep.o
mod-subdirs := oss seq mod-subdirs := oss seq
...@@ -29,26 +27,10 @@ ifeq ($(subst m,y,$(CONFIG_RTC)),y) ...@@ -29,26 +27,10 @@ ifeq ($(subst m,y,$(CONFIG_RTC)),y)
obj-$(CONFIG_SND_RTCTIMER) += snd-rtctimer.o obj-$(CONFIG_SND_RTCTIMER) += snd-rtctimer.o
endif endif
obj-$(CONFIG_SND_HWDEP) += snd-hwdep.o obj-$(CONFIG_SND_HWDEP) += snd-hwdep.o
obj-$(CONFIG_SND_MIXER_OSS) += oss/
subdir-$(CONFIG_SND_MIXER_OSS) += oss obj-$(CONFIG_SND_PCM_OSS) += snd-pcm.o snd-timer.o oss/
subdir-$(CONFIG_SND_PCM_OSS) += oss obj-$(CONFIG_SND_SEQUENCER) += snd-timer.o seq/
ifeq ($(filter $(subdir-y),oss),oss) obj-$(CONFIG_SND_BIT32_EMUL) += ioctl32/
obj-y += oss/_oss.o
endif
obj-$(CONFIG_SND_PCM_OSS) += snd-pcm.o snd-timer.o
subdir-$(CONFIG_SND_SEQUENCER) += seq
ifeq ($(CONFIG_SND_SEQUENCER),y)
obj-y += seq/_seq.o
endif
obj-$(CONFIG_SND_SEQUENCER) += snd-timer.o
subdir-$(CONFIG_SND_BIT32_EMUL) += ioctl32
ifeq ($(CONFIG_SND_BIT32_EMUL),y)
obj-y += ioctl32/_ioctl32.o
endif
# Toplevel Module Dependency # Toplevel Module Dependency
obj-$(CONFIG_SND_DUMMY) += snd-pcm.o snd-timer.o snd.o obj-$(CONFIG_SND_DUMMY) += snd-pcm.o snd-timer.o snd.o
......
...@@ -3,8 +3,6 @@ ...@@ -3,8 +3,6 @@
# Copyright (c) 1999 by Jaroslav Kysela <perex@suse.cz> # Copyright (c) 1999 by Jaroslav Kysela <perex@suse.cz>
# #
O_TARGET := _ioctl32.o
snd-ioctl32-objs := ioctl32.o pcm32.o rawmidi32.o timer32.o hwdep32.o snd-ioctl32-objs := ioctl32.o pcm32.o rawmidi32.o timer32.o hwdep32.o
ifeq ($(CONFIG_SND_SEQUENCER),y) ifeq ($(CONFIG_SND_SEQUENCER),y)
snd-ioctl32-objs += seq32.o snd-ioctl32-objs += seq32.o
......
...@@ -3,8 +3,6 @@ ...@@ -3,8 +3,6 @@
# Copyright (c) 1999 by Jaroslav Kysela <perex@suse.cz> # Copyright (c) 1999 by Jaroslav Kysela <perex@suse.cz>
# #
O_TARGET := _oss.o
export-objs := mixer_oss.o export-objs := mixer_oss.o
snd-mixer-oss-objs := mixer_oss.o snd-mixer-oss-objs := mixer_oss.o
......
...@@ -3,19 +3,10 @@ ...@@ -3,19 +3,10 @@
# Copyright (c) 1999 by Jaroslav Kysela <perex@suse.cz> # Copyright (c) 1999 by Jaroslav Kysela <perex@suse.cz>
# #
O_TARGET := _seq.o
mod-subdirs := instr mod-subdirs := instr
subdir-$(CONFIG_SND) += instr obj-$(CONFIG_SND) += instr/
ifeq ($(CONFIG_SND),y) obj-$(CONFIG_SND_SEQUENCER_OSS) += oss/
obj-y += instr/_instr.o
endif
subdir-$(CONFIG_SND_SEQUENCER_OSS) += oss
ifeq ($(CONFIG_SND_SEQUENCER_OSS),y)
obj-y += oss/_oss.o
endif
export-objs := seq_device.o seq.o seq_ports.o seq_instr.o seq_midi_emul.o \ export-objs := seq_device.o seq.o seq_ports.o seq_instr.o seq_midi_emul.o \
seq_midi_event.o seq_virmidi.o seq_midi_event.o seq_virmidi.o
......
...@@ -3,8 +3,6 @@ ...@@ -3,8 +3,6 @@
# Copyright (c) 1999 by Jaroslav Kysela <perex@suse.cz> # Copyright (c) 1999 by Jaroslav Kysela <perex@suse.cz>
# #
O_TARGET := _instr.o
export-objs := ainstr_fm.o ainstr_simple.o ainstr_gf1.o ainstr_iw.o export-objs := ainstr_fm.o ainstr_simple.o ainstr_gf1.o ainstr_iw.o
snd-ainstr-fm-objs := ainstr_fm.o snd-ainstr-fm-objs := ainstr_fm.o
......
...@@ -3,8 +3,6 @@ ...@@ -3,8 +3,6 @@
# Copyright (c) 1999 by Jaroslav Kysela <perex@suse.cz> # Copyright (c) 1999 by Jaroslav Kysela <perex@suse.cz>
# #
O_TARGET := _oss.o
snd-seq-oss-objs := seq_oss.o seq_oss_init.o seq_oss_timer.o seq_oss_ioctl.o \ snd-seq-oss-objs := seq_oss.o seq_oss_init.o seq_oss_timer.o seq_oss_ioctl.o \
seq_oss_event.o seq_oss_rw.o seq_oss_synth.o \ seq_oss_event.o seq_oss_rw.o seq_oss_synth.o \
seq_oss_midi.o seq_oss_readq.o seq_oss_writeq.o seq_oss_midi.o seq_oss_readq.o seq_oss_writeq.o
......
...@@ -3,8 +3,6 @@ ...@@ -3,8 +3,6 @@
# Copyright (c) 2001 by Jaroslav Kysela <perex@suse.cz> # Copyright (c) 2001 by Jaroslav Kysela <perex@suse.cz>
# #
O_TARGET := _drivers.o
mod-subdirs := opl3 mpu401 mod-subdirs := opl3 mpu401
snd-dummy-objs := dummy.o snd-dummy-objs := dummy.o
...@@ -18,9 +16,6 @@ obj-$(CONFIG_SND_VIRMIDI) += snd-virmidi.o ...@@ -18,9 +16,6 @@ obj-$(CONFIG_SND_VIRMIDI) += snd-virmidi.o
obj-$(CONFIG_SND_SERIAL_U16550) += snd-serial-u16550.o obj-$(CONFIG_SND_SERIAL_U16550) += snd-serial-u16550.o
obj-$(CONFIG_SND_MTPAV) += snd-mtpav.o obj-$(CONFIG_SND_MTPAV) += snd-mtpav.o
subdir-$(CONFIG_SND) += opl3 mpu401 obj-$(CONFIG_SND) += opl3/ mpu401/
ifeq ($(CONFIG_SND),y)
obj-y += mpu401/_mpu401.o opl3/_opl3.o
endif
include $(TOPDIR)/Rules.make include $(TOPDIR)/Rules.make
...@@ -3,8 +3,6 @@ ...@@ -3,8 +3,6 @@
# Copyright (c) 2001 by Jaroslav Kysela <perex@suse.cz> # Copyright (c) 2001 by Jaroslav Kysela <perex@suse.cz>
# #
O_TARGET := _mpu401.o
export-objs := mpu401_uart.o export-objs := mpu401_uart.o
snd-mpu401-objs := mpu401.o snd-mpu401-objs := mpu401.o
......
...@@ -3,8 +3,6 @@ ...@@ -3,8 +3,6 @@
# Copyright (c) 2001 by Jaroslav Kysela <perex@suse.cz> # Copyright (c) 2001 by Jaroslav Kysela <perex@suse.cz>
# #
O_TARGET := _opl3.o
export-objs := opl3_lib.o export-objs := opl3_lib.o
snd-opl3-lib-objs := opl3_lib.o opl3_synth.o snd-opl3-lib-objs := opl3_lib.o opl3_synth.o
......
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
# Copyright (c) 2001 by Jaroslav Kysela <perex@suse.cz> # Copyright (c) 2001 by Jaroslav Kysela <perex@suse.cz>
# #
O_TARGET := _i2c.o mod-subdirs := l3
export-objs := i2c.o cs8427.o tea6330t.o export-objs := i2c.o cs8427.o tea6330t.o
...@@ -11,13 +11,7 @@ snd-i2c-objs := i2c.o ...@@ -11,13 +11,7 @@ snd-i2c-objs := i2c.o
snd-cs8427-objs := cs8427.o snd-cs8427-objs := cs8427.o
snd-tea6330t-objs := tea6330t.o snd-tea6330t-objs := tea6330t.o
ifeq ($(subst m,y,$(CONFIG_L3)),y) obj-$(CONFIG_SND) += l3/
subdir-$(CONFIG_L3) += l3
endif
ifeq ($(filter $(subdir-y),l3),l3)
subdir-m := l3
obj-y += l3/l3.o
endif
# Toplevel Module Dependency # Toplevel Module Dependency
obj-$(CONFIG_SND_INTERWAVE_STB) += snd-tea6330t.o snd-i2c.o obj-$(CONFIG_SND_INTERWAVE_STB) += snd-tea6330t.o snd-i2c.o
......
...@@ -2,8 +2,6 @@ ...@@ -2,8 +2,6 @@
# Makefile for ALSA # Makefile for ALSA
# #
O_TARGET = l3.o
export-objs += uda1341.o export-objs += uda1341.o
snd-uda1341-objs := uda1341.o snd-uda1341-objs := uda1341.o
......
...@@ -3,8 +3,6 @@ ...@@ -3,8 +3,6 @@
# Copyright (c) 2001 by Jaroslav Kysela <perex@suse.cz> # Copyright (c) 2001 by Jaroslav Kysela <perex@suse.cz>
# #
O_TARGET := _isa.o
mod-subdirs := ad1816a ad1848 cs423x es1688 gus opti9xx sb wavefront mod-subdirs := ad1816a ad1848 cs423x es1688 gus opti9xx sb wavefront
snd-als100-objs := als100.o snd-als100-objs := als100.o
...@@ -24,16 +22,7 @@ obj-$(CONFIG_SND_ES18XX) += snd-es18xx.o ...@@ -24,16 +22,7 @@ obj-$(CONFIG_SND_ES18XX) += snd-es18xx.o
obj-$(CONFIG_SND_OPL3SA2) += snd-opl3sa2.o obj-$(CONFIG_SND_OPL3SA2) += snd-opl3sa2.o
obj-$(CONFIG_SND_SGALAXY) += snd-sgalaxy.o obj-$(CONFIG_SND_SGALAXY) += snd-sgalaxy.o
subdir-$(CONFIG_SND) += ad1816a ad1848 cs423x es1688 gus opti9xx sb wavefront obj-$(CONFIG_SND) += ad1816a/ ad1848/ cs423x/ es1688/ gus/ opti9xx/ \
ifeq ($(CONFIG_SND),y) sb/ wavefront/
obj-y += ad1816a/_ad1816a.o \
ad1848/_ad1848.o \
cs423x/_cs423x.o \
es1688/_es1688.o \
gus/_gus.o \
opti9xx/_opti9xx.o \
sb/_sb.o \
wavefront/_wavefront.o
endif
include $(TOPDIR)/Rules.make include $(TOPDIR)/Rules.make
...@@ -3,8 +3,6 @@ ...@@ -3,8 +3,6 @@
# Copyright (c) 2001 by Jaroslav Kysela <perex@suse.cz> # Copyright (c) 2001 by Jaroslav Kysela <perex@suse.cz>
# #
O_TARGET := _ad1816a.o
export-objs := ad1816a_lib.o export-objs := ad1816a_lib.o
snd-ad1816a-lib-objs := ad1816a_lib.o snd-ad1816a-lib-objs := ad1816a_lib.o
......
...@@ -3,8 +3,6 @@ ...@@ -3,8 +3,6 @@
# Copyright (c) 2001 by Jaroslav Kysela <perex@suse.cz> # Copyright (c) 2001 by Jaroslav Kysela <perex@suse.cz>
# #
O_TARGET := _ad1848.o
export-objs := ad1848_lib.o export-objs := ad1848_lib.o
snd-ad1848-lib-objs := ad1848_lib.o snd-ad1848-lib-objs := ad1848_lib.o
......
...@@ -3,8 +3,6 @@ ...@@ -3,8 +3,6 @@
# Copyright (c) 2001 by Jaroslav Kysela <perex@suse.cz> # Copyright (c) 2001 by Jaroslav Kysela <perex@suse.cz>
# #
O_TARGET := _cs423x.o
export-objs := cs4231_lib.o cs4236_lib.o export-objs := cs4231_lib.o cs4236_lib.o
snd-cs4231-lib-objs := cs4231_lib.o snd-cs4231-lib-objs := cs4231_lib.o
......
...@@ -3,8 +3,6 @@ ...@@ -3,8 +3,6 @@
# Copyright (c) 2001 by Jaroslav Kysela <perex@suse.cz> # Copyright (c) 2001 by Jaroslav Kysela <perex@suse.cz>
# #
O_TARGET := _es1688.o
export-objs := es1688_lib.o export-objs := es1688_lib.o
snd-es1688-lib-objs := es1688_lib.o snd-es1688-lib-objs := es1688_lib.o
......
...@@ -3,8 +3,6 @@ ...@@ -3,8 +3,6 @@
# Copyright (c) 2001 by Jaroslav Kysela <perex@suse.cz> # Copyright (c) 2001 by Jaroslav Kysela <perex@suse.cz>
# #
O_TARGET := _gus.o
export-objs := gus_main.o gus_volume.o export-objs := gus_main.o gus_volume.o
snd-gus-lib-objs := gus_main.o \ snd-gus-lib-objs := gus_main.o \
......
...@@ -3,8 +3,6 @@ ...@@ -3,8 +3,6 @@
# Copyright (c) 2001 by Jaroslav Kysela <perex@suse.cz> # Copyright (c) 2001 by Jaroslav Kysela <perex@suse.cz>
# #
O_TARGET := _opti9xx.o
snd-opti92x-ad1848-objs := opti92x-ad1848.o snd-opti92x-ad1848-objs := opti92x-ad1848.o
snd-opti92x-cs4231-objs := opti92x-cs4231.o snd-opti92x-cs4231-objs := opti92x-cs4231.o
snd-opti93x-objs := opti93x.o snd-opti93x-objs := opti93x.o
......
...@@ -3,8 +3,6 @@ ...@@ -3,8 +3,6 @@
# Copyright (c) 2001 by Jaroslav Kysela <perex@suse.cz> # Copyright (c) 2001 by Jaroslav Kysela <perex@suse.cz>
# #
O_TARGET := _sb.o
export-objs := emu8000.o emu8000_synth.o sb_common.o sb8_main.o sb16_main.o sb16_csp.o export-objs := emu8000.o emu8000_synth.o sb_common.o sb8_main.o sb16_main.o sb16_csp.o
snd-sb-common-objs := sb_common.o sb_mixer.o snd-sb-common-objs := sb_common.o sb_mixer.o
......
...@@ -3,8 +3,6 @@ ...@@ -3,8 +3,6 @@
# Copyright (c) 2001 by Jaroslav Kysela <perex@suse.cz> # Copyright (c) 2001 by Jaroslav Kysela <perex@suse.cz>
# #
O_TARGET := _wavefront.o
snd-wavefront-objs := wavefront.o wavefront_fx.o wavefront_synth.o wavefront_midi.o snd-wavefront-objs := wavefront.o wavefront_fx.o wavefront_synth.o wavefront_midi.o
# Toplevel Module Dependency # Toplevel Module Dependency
......
...@@ -3,8 +3,6 @@ ...@@ -3,8 +3,6 @@
# 18 Apr 1998, Michael Elizabeth Chastain, <mailto:mec@shout.net> # 18 Apr 1998, Michael Elizabeth Chastain, <mailto:mec@shout.net>
# Rewritten to use lists instead of if-statements. # Rewritten to use lists instead of if-statements.
O_TARGET := _oss.o
# All of the (potential) objects that export symbols. # All of the (potential) objects that export symbols.
# This list comes from 'grep -l EXPORT_SYMBOL *.[hc]'. # This list comes from 'grep -l EXPORT_SYMBOL *.[hc]'.
...@@ -78,23 +76,9 @@ ifeq ($(CONFIG_MIDI_EMU10K1),y) ...@@ -78,23 +76,9 @@ ifeq ($(CONFIG_MIDI_EMU10K1),y)
obj-$(CONFIG_SOUND_EMU10K1) += sound.o obj-$(CONFIG_SOUND_EMU10K1) += sound.o
endif endif
subdir-$(CONFIG_SOUND_EMU10K1) += emu10k1 obj-$(CONFIG_SOUND_EMU10K1) += emu10k1/
subdir-$(CONFIG_SOUND_CS4281) += cs4281 obj-$(CONFIG_SOUND_CS4281) += cs4281/
obj-$(CONFIG_DMASOUND) += dmasound/
ifeq ($(CONFIG_SOUND_EMU10K1),y)
obj-y += emu10k1/_emu10k1.o
endif
ifeq ($(CONFIG_SOUND_CS4281),y)
obj-y += cs4281/_cs4281.o
endif
subdir-$(CONFIG_DMASOUND) += dmasound
ifeq ($(CONFIG_DMASOUND),y)
obj-y += dmasound/_dmasound.o
endif
# Declare multi-part drivers. # Declare multi-part drivers.
......
# Makefile for Cirrus Logic-Crystal CS4281 # Makefile for Cirrus Logic-Crystal CS4281
# #
O_TARGET := _cs4281.o
obj-$(CONFIG_SOUND_CS4281) += cs4281.o obj-$(CONFIG_SOUND_CS4281) += cs4281.o
cs4281-objs += cs4281m.o cs4281-objs += cs4281m.o
......
# #
# Makefile for the DMA sound driver # Makefile for the DMA sound driver
# #
# 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 in the main makefile...
O_TARGET = _dmasound.o
export-objs := dmasound_core.o export-objs := dmasound_core.o
......
...@@ -2,8 +2,6 @@ ...@@ -2,8 +2,6 @@
# #
# 12 Apr 2000 Rui Sousa # 12 Apr 2000 Rui Sousa
O_TARGET := _emu10k1.o
obj-$(CONFIG_SOUND_EMU10K1) += emu10k1.o obj-$(CONFIG_SOUND_EMU10K1) += emu10k1.o
emu10k1-objs := audio.o cardmi.o cardmo.o cardwi.o cardwo.o ecard.o \ emu10k1-objs := audio.o cardmi.o cardmo.o cardwi.o cardwo.o ecard.o \
......
...@@ -3,8 +3,6 @@ ...@@ -3,8 +3,6 @@
# Copyright (c) 2001 by Jaroslav Kysela <perex@suse.cz> # Copyright (c) 2001 by Jaroslav Kysela <perex@suse.cz>
# #
O_TARGET := _pci.o
mod-subdirs := ac97 ali5451 cs46xx emu10k1 korg1212 nm256 rme9652 trident ymfpci mod-subdirs := ac97 ali5451 cs46xx emu10k1 korg1212 nm256 rme9652 trident ymfpci
snd-als4000-objs := als4000.o snd-als4000-objs := als4000.o
...@@ -42,17 +40,6 @@ obj-$(CONFIG_SND_SONICVIBES) += snd-sonicvibes.o ...@@ -42,17 +40,6 @@ obj-$(CONFIG_SND_SONICVIBES) += snd-sonicvibes.o
obj-$(CONFIG_SND_VIA686) += snd-via686.o obj-$(CONFIG_SND_VIA686) += snd-via686.o
obj-$(CONFIG_SND_VIA8233) += snd-via8233.o obj-$(CONFIG_SND_VIA8233) += snd-via8233.o
subdir-$(CONFIG_SND) += ac97 ali5451 cs46xx emu10k1 korg1212 nm256 rme9652 trident ymfpci obj-$(CONFIG_SND) += ac97/ ali5451/ cs46xx/ emu10k1/ korg1212/ nm256/ rme9652/ trident/ ymfpci/
ifeq ($(CONFIG_SND),y)
obj-y += ac97/_ac97.o \
ali5451/_ali5451.o \
cs46xx/_cs46xx.o \
emu10k1/_emu10k1.o \
korg1212/_korg1212.o \
nm256/_nm256.o \
rme9652/_rme9652.o \
trident/_trident.o \
ymfpci/_ymfpci.o
endif
include $(TOPDIR)/Rules.make include $(TOPDIR)/Rules.make
...@@ -3,8 +3,6 @@ ...@@ -3,8 +3,6 @@
# Copyright (c) 2001 by Jaroslav Kysela <perex@suse.cz> # Copyright (c) 2001 by Jaroslav Kysela <perex@suse.cz>
# #
O_TARGET := _ac97.o
export-objs := ac97_codec.o ak4531_codec.o export-objs := ac97_codec.o ak4531_codec.o
snd-ac97-codec-objs := ac97_codec.o snd-ac97-codec-objs := ac97_codec.o
......
...@@ -3,8 +3,6 @@ ...@@ -3,8 +3,6 @@
# Copyright (c) 2001 by Jaroslav Kysela <perex@suse.cz> # Copyright (c) 2001 by Jaroslav Kysela <perex@suse.cz>
# #
O_TARGET := _ali5451.o
snd-ali5451-objs := ali5451.o snd-ali5451-objs := ali5451.o
# Toplevel Module Dependency # Toplevel Module Dependency
......
...@@ -3,8 +3,6 @@ ...@@ -3,8 +3,6 @@
# Copyright (c) 2001 by Jaroslav Kysela <perex@suse.cz> # Copyright (c) 2001 by Jaroslav Kysela <perex@suse.cz>
# #
O_TARGET := _cs46xx.o
snd-cs46xx-objs := cs46xx.o cs46xx_lib.o snd-cs46xx-objs := cs46xx.o cs46xx_lib.o
# Toplevel Module Dependency # Toplevel Module Dependency
......
...@@ -3,8 +3,6 @@ ...@@ -3,8 +3,6 @@
# Copyright (c) 2001 by Jaroslav Kysela <perex@suse.cz> # Copyright (c) 2001 by Jaroslav Kysela <perex@suse.cz>
# #
O_TARGET := _emu10k1.o
export-objs := emu10k1_main.o export-objs := emu10k1_main.o
snd-emu10k1-objs := emu10k1.o emu10k1_main.o \ snd-emu10k1-objs := emu10k1.o emu10k1_main.o \
......
...@@ -3,8 +3,6 @@ ...@@ -3,8 +3,6 @@
# Copyright (c) 2001 by Jaroslav Kysela <perex@suse.cz> # Copyright (c) 2001 by Jaroslav Kysela <perex@suse.cz>
# #
O_TARGET := _korg1212.o
snd-korg1212-objs := korg1212.o snd-korg1212-objs := korg1212.o
# Toplevel Module Dependency # Toplevel Module Dependency
......
...@@ -3,8 +3,6 @@ ...@@ -3,8 +3,6 @@
# Copyright (c) 2001 by Jaroslav Kysela <perex@suse.cz> # Copyright (c) 2001 by Jaroslav Kysela <perex@suse.cz>
# #
O_TARGET := _nm256.o
snd-nm256-objs := nm256.o snd-nm256-objs := nm256.o
# Toplevel Module Dependency # Toplevel Module Dependency
......
...@@ -3,8 +3,6 @@ ...@@ -3,8 +3,6 @@
# Copyright (c) 2001 by Jaroslav Kysela <perex@suse.cz> # Copyright (c) 2001 by Jaroslav Kysela <perex@suse.cz>
# #
O_TARGET := _rme9652.o
export-objs := rme9652_mem.o export-objs := rme9652_mem.o
snd-rme9652-mem-objs := rme9652_mem.o snd-rme9652-mem-objs := rme9652_mem.o
......
...@@ -3,8 +3,6 @@ ...@@ -3,8 +3,6 @@
# Copyright (c) 2001 by Jaroslav Kysela <perex@suse.cz> # Copyright (c) 2001 by Jaroslav Kysela <perex@suse.cz>
# #
O_TARGET := _trident.o
export-objs := trident_main.o export-objs := trident_main.o
snd-trident-objs := trident.o trident_main.o trident_memory.o snd-trident-objs := trident.o trident_main.o trident_memory.o
......
...@@ -3,8 +3,6 @@ ...@@ -3,8 +3,6 @@
# Copyright (c) 2001 by Jaroslav Kysela <perex@suse.cz> # Copyright (c) 2001 by Jaroslav Kysela <perex@suse.cz>
# #
O_TARGET := _ymfpci.o
snd-ymfpci-objs := ymfpci.o ymfpci_main.o snd-ymfpci-objs := ymfpci.o ymfpci_main.o
# Toplevel Module Dependency # Toplevel Module Dependency
......
...@@ -3,8 +3,6 @@ ...@@ -3,8 +3,6 @@
# Copyright (c) 2001 by Jaroslav Kysela <perex@suse.cz> # Copyright (c) 2001 by Jaroslav Kysela <perex@suse.cz>
# #
O_TARGET := _ppc.o
snd-powermac-objs := powermac.o pmac.o awacs.o burgundy.o daca.o tumbler.o keywest.o snd-powermac-objs := powermac.o pmac.o awacs.o burgundy.o daca.o tumbler.o keywest.o
# Toplevel Module Dependency # Toplevel Module Dependency
......
...@@ -3,8 +3,6 @@ ...@@ -3,8 +3,6 @@
# Copyright (c) 2001 by Jaroslav Kysela <perex@suse.cz> # Copyright (c) 2001 by Jaroslav Kysela <perex@suse.cz>
# #
O_TARGET := _synth.o
mod-subdirs := emux mod-subdirs := emux
export-objs := util_mem.o export-objs := util_mem.o
...@@ -18,9 +16,6 @@ ifeq ($(subst m,y,$(CONFIG_SND_SEQUENCER)),y) ...@@ -18,9 +16,6 @@ ifeq ($(subst m,y,$(CONFIG_SND_SEQUENCER)),y)
obj-$(CONFIG_SND_SBAWE) += snd-util-mem.o obj-$(CONFIG_SND_SBAWE) += snd-util-mem.o
endif endif
subdir-$(CONFIG_SND) += emux obj-$(CONFIG_SND) += emux/
ifeq ($(CONFIG_SND),y)
obj-y += emux/_emux.o
endif
include $(TOPDIR)/Rules.make include $(TOPDIR)/Rules.make
...@@ -3,8 +3,6 @@ ...@@ -3,8 +3,6 @@
# Copyright (c) 2001 by Jaroslav Kysela <perex@suse.cz> # Copyright (c) 2001 by Jaroslav Kysela <perex@suse.cz>
# #
O_TARGET := _emux.o
export-objs := emux.o export-objs := emux.o
snd-emux-synth-objs := emux.o emux_synth.o emux_seq.o emux_nrpn.o \ snd-emux-synth-objs := emux.o emux_synth.o emux_seq.o emux_nrpn.o \
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment