summaryrefslogtreecommitdiff
path: root/libc/gtermcap/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'libc/gtermcap/Makefile')
-rw-r--r--libc/gtermcap/Makefile21
1 files changed, 21 insertions, 0 deletions
diff --git a/libc/gtermcap/Makefile b/libc/gtermcap/Makefile
new file mode 100644
index 0000000..fe4e8ae
--- /dev/null
+++ b/libc/gtermcap/Makefile
@@ -0,0 +1,21 @@
+# Copyright (C) 1995,1996 Robert de Bath <rdebath@cix.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
+
+OBJ=termcap.o tparam.o
+
+all: $(OBJ)
+
+libc.a: $(OBJ)
+ ar r ../$(LIBC) $(OBJ)
+ @touch libc.a
+
+clean:
+ rm -f *.o libc.a
+
+$(SOBJ): $(SSRC)
+ $(CC) $(CFLAGS) -c -DL_$* -o $@ $(SSRC)
+