summaryrefslogtreecommitdiffstats
path: root/drivers/tty/Makefile
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@linux-foundation.org>2010-11-08 10:55:29 -0800
committerLinus Torvalds <torvalds@linux-foundation.org>2010-11-08 10:55:29 -0800
commit5398a64c63a69a0ac33dbae458ea4aab0dc23f14 (patch)
treeae3c668c3247df18db0a293cbcfad4a9e53d0fd7 /drivers/tty/Makefile
parent764e028e24d33f6e375d2a5df450c9d0180fbc00 (diff)
parent1db01135df7aa8b456e093a781f1d7f7016ec01e (diff)
Merge git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty-2.6
* git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty-2.6: TTY: move .gitignore from drivers/char/ to drivers/tty/vt/ TTY: create drivers/tty/vt and move the vt code there TTY: create drivers/tty and move the tty core files there
Diffstat (limited to 'drivers/tty/Makefile')
-rw-r--r--drivers/tty/Makefile11
1 files changed, 11 insertions, 0 deletions
diff --git a/drivers/tty/Makefile b/drivers/tty/Makefile
new file mode 100644
index 00000000000..c43ef48b1a0
--- /dev/null
+++ b/drivers/tty/Makefile
@@ -0,0 +1,11 @@
+obj-y += tty_io.o n_tty.o tty_ioctl.o tty_ldisc.o \
+ tty_buffer.o tty_port.o tty_mutex.o
+obj-$(CONFIG_LEGACY_PTYS) += pty.o
+obj-$(CONFIG_UNIX98_PTYS) += pty.o
+obj-$(CONFIG_AUDIT) += tty_audit.o
+obj-$(CONFIG_MAGIC_SYSRQ) += sysrq.o
+obj-$(CONFIG_N_HDLC) += n_hdlc.o
+obj-$(CONFIG_N_GSM) += n_gsm.o
+obj-$(CONFIG_R3964) += n_r3964.o
+
+obj-y += vt/