1# Copyright (C) 1995,1996 Robert de Bath <rdebath@cix.compulink.co.uk>
2# This file is part of the Linux-8086 C library and is distributed
3# under the GNU Library General Public License.
4
5CFLAGS=-pipe -O2 -fno-strict-aliasing  $(ARCH) $(CCFLAGS) $(DEFS)
6
7ifeq ($(LIB_OS),ELKS)
8OBJ=termcap.o tparam.o
9
10all: $(LIBC)($(OBJ))
11	@$(RM) $(OBJ)
12else
13all:
14	@:
15endif
16
17clean:
18	rm -f *.o libc.a
19
20