~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/arch/um/drivers/Makefile

Version: ~ [ linux-6.12-rc7 ] ~ [ linux-6.11.7 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.60 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.116 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.171 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.229 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.285 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.323 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.12 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

  1 # SPDX-License-Identifier: GPL-2.0
  2 # 
  3 # Copyright (C) 2000, 2002, 2003 Jeff Dike (jdike@karaya.com)
  4 #
  5 
  6 # pcap is broken in 2.5 because kbuild doesn't allow pcap.a to be linked
  7 # in to pcap.o
  8 
  9 slip-objs := slip_kern.o slip_user.o
 10 slirp-objs := slirp_kern.o slirp_user.o
 11 daemon-objs := daemon_kern.o daemon_user.o
 12 vector-objs := vector_kern.o vector_user.o vector_transports.o
 13 umcast-objs := umcast_kern.o umcast_user.o
 14 net-objs := net_kern.o net_user.o
 15 mconsole-objs := mconsole_kern.o mconsole_user.o
 16 hostaudio-objs := hostaudio_kern.o
 17 ubd-objs := ubd_kern.o ubd_user.o
 18 port-objs := port_kern.o port_user.o
 19 harddog-objs := harddog_kern.o
 20 harddog-builtin-$(CONFIG_UML_WATCHDOG) := harddog_user.o harddog_user_exp.o
 21 rtc-objs := rtc_kern.o rtc_user.o
 22 
 23 LDFLAGS_vde.o = $(shell $(CC) $(CFLAGS) -print-file-name=libvdeplug.a)
 24 
 25 targets := vde_kern.o vde_user.o
 26 
 27 $(obj)/vde.o: $(obj)/vde_kern.o $(obj)/vde_user.o
 28         $(LD) -r -dp -o $@ $^ $(ld_flags)
 29 
 30 #XXX: The call below does not work because the flags are added before the
 31 # object name, so nothing from the library gets linked.
 32 #$(call if_changed,ld)
 33 
 34 # When the above is fixed, don't forget to add this too!
 35 #targets += $(obj)/pcap.o
 36 
 37 obj-y := stdio_console.o fd.o chan_kern.o chan_user.o line.o
 38 obj-$(CONFIG_SSL) += ssl.o
 39 obj-$(CONFIG_STDERR_CONSOLE) += stderr_console.o
 40 
 41 obj-$(CONFIG_UML_NET_SLIP) += slip.o slip_common.o
 42 obj-$(CONFIG_UML_NET_SLIRP) += slirp.o slip_common.o
 43 obj-$(CONFIG_UML_NET_DAEMON) += daemon.o 
 44 obj-$(CONFIG_UML_NET_VECTOR) += vector.o
 45 obj-$(CONFIG_UML_NET_VDE) += vde.o
 46 obj-$(CONFIG_UML_NET_MCAST) += umcast.o
 47 obj-$(CONFIG_UML_NET) += net.o 
 48 obj-$(CONFIG_MCONSOLE) += mconsole.o
 49 obj-$(CONFIG_MMAPPER) += mmapper_kern.o 
 50 obj-$(CONFIG_BLK_DEV_UBD) += ubd.o 
 51 obj-$(CONFIG_UML_SOUND) += hostaudio.o
 52 obj-$(CONFIG_NULL_CHAN) += null.o 
 53 obj-$(CONFIG_PORT_CHAN) += port.o
 54 obj-$(CONFIG_PTY_CHAN) += pty.o
 55 obj-$(CONFIG_TTY_CHAN) += tty.o 
 56 obj-$(CONFIG_XTERM_CHAN) += xterm.o xterm_kern.o
 57 obj-$(CONFIG_UML_WATCHDOG) += harddog.o
 58 obj-y += $(harddog-builtin-y) $(harddog-builtin-m)
 59 obj-$(CONFIG_BLK_DEV_COW_COMMON) += cow_user.o
 60 obj-$(CONFIG_UML_RANDOM) += random.o
 61 obj-$(CONFIG_VIRTIO_UML) += virtio_uml.o
 62 obj-$(CONFIG_UML_RTC) += rtc.o
 63 obj-$(CONFIG_UML_PCI_OVER_VIRTIO) += virt-pci.o
 64 
 65 # pcap_user.o must be added explicitly.
 66 USER_OBJS := fd.o null.o pty.o tty.o xterm.o slip_common.o vde_user.o vector_user.o
 67 CFLAGS_null.o = -DDEV_NULL=$(DEV_NULL_PATH)
 68 
 69 CFLAGS_xterm.o += '-DCONFIG_XTERM_CHAN_DEFAULT_EMULATOR="$(CONFIG_XTERM_CHAN_DEFAULT_EMULATOR)"'
 70 
 71 include $(srctree)/arch/um/scripts/Makefile.rules

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php