summaryrefslogtreecommitdiff
path: root/libc-0.0.4/termios/Makefile
blob: 6925bb3167f3b1e13f628747c467e85b7768c323 (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
# 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

OBJ=$(TOBJ)

all: $(OBJ)

libdos.a:

libc.a: $(OBJ)
	ar r ../libc.a $(OBJ)
	@touch libc.a

clean:
	rm -f $(OBJ) libc.a

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