diff options
author | Eric Andersen <andersen@codepoet.org> | 2001-01-15 18:16:14 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2001-01-15 18:16:14 +0000 |
commit | 6fce1235bea41b65a0b7a978c65b908c736365d4 (patch) | |
tree | 87f187b31b047b77f09d7581affbe2a032b36ced /libc/termios/Makefile | |
parent | 5d83a25c29718b926ed547abf9131ffbbd35bc95 (diff) |
Fix termios handling. Now synced with behavior of GNU libc.
-Erik
Diffstat (limited to 'libc/termios/Makefile')
-rw-r--r-- | libc/termios/Makefile | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/libc/termios/Makefile b/libc/termios/Makefile index f90c5922a..8b1f9e2ea 100644 --- a/libc/termios/Makefile +++ b/libc/termios/Makefile @@ -25,11 +25,12 @@ include $(TOPDIR)Rules.mak LIBC=$(TOPDIR)libc.a MSRC=termios.c -MOBJ=tcsetattr.o tcgetattr.o tcdrain.o tcflow.o tcflush.o tcsendbreak.o \ - tcsetpgrp.o tcgetpgrp.o isatty.o cfgetospeed.o cfgetispeed.o cfsetospeed.o \ - cfsetispeed.o cfmakeraw.o +MOBJ= tcdrain.o tcflow.o tcflush.o tcsendbreak.o tcsetpgrp.o tcgetpgrp.o \ + isatty.o cfgetospeed.o cfgetispeed.o cfsetospeed.o cfsetispeed.o \ + cfmakeraw.o cfsetspeed.o -CSRC=ttyname.c + +CSRC=tcgetattr.c tcgetsid.c tcsetattr.c ttyname.c COBJS=$(patsubst %.c,%.o, $(CSRC)) OBJS=$(MOBJ) $(COBJS) |