18 lines
584 B
Makefile
18 lines
584 B
Makefile
chardev-obj-y += char.o
|
|
chardev-obj-$(CONFIG_WIN32) += char-console.o
|
|
chardev-obj-$(CONFIG_POSIX) += char-fd.o
|
|
chardev-obj-y += char-file.o
|
|
chardev-obj-y += char-io.o
|
|
chardev-obj-y += char-mux.o
|
|
chardev-obj-y += char-null.o
|
|
chardev-obj-$(CONFIG_POSIX) += char-parallel.o
|
|
chardev-obj-y += char-pipe.o
|
|
chardev-obj-$(CONFIG_POSIX) += char-pty.o
|
|
chardev-obj-y += char-ringbuf.o
|
|
chardev-obj-y += char-serial.o
|
|
chardev-obj-y += char-socket.o
|
|
chardev-obj-y += char-stdio.o
|
|
chardev-obj-y += char-udp.o
|
|
chardev-obj-$(CONFIG_WIN32) += char-win.o
|
|
chardev-obj-$(CONFIG_WIN32) += char-win-stdio.o
|