summaryrefslogtreecommitdiff
path: root/libc/termios/Makefile
blob: c9786381140066b1418ae19f159de1ed78839f47 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# Copyright (C) 1996 Robert de Bath <robert@mayday.compulink.co.uk>
# This file is part of the Linux-8086 C library and is distributed
# under the GNU Library General Public License.

TOP=..
include $(TOP)/Make.defs

TSRC=termios.c
TOBJ=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

OBJ=$(TOBJ) ttyname.o

all: $(OBJ)

ifeq ($(PLATFORM),i86-DOS)
libc.a:
else
libc.a: $(OBJ)
	ar r ../$(LIBC) $(OBJ)
	@touch libc.a
endif

clean:
	rm -f *.o libc.a

$(TOBJ): $(TSRC)
	$(CC) $(CFLAGS) -c -DL_$* -o $@ $(TSRC)