aboutsummaryrefslogtreecommitdiffstats
path: root/sdk/dev/Makefile.in
diff options
context:
space:
mode:
Diffstat (limited to 'sdk/dev/Makefile.in')
-rw-r--r--sdk/dev/Makefile.in19
1 files changed, 19 insertions, 0 deletions
diff --git a/sdk/dev/Makefile.in b/sdk/dev/Makefile.in
new file mode 100644
index 0000000..1375154
--- /dev/null
+++ b/sdk/dev/Makefile.in
@@ -0,0 +1,19 @@
+#
+# Template to build device interface library.
+# $Id$
+# Copyright (c) 1997 by Tycho Softworks.
+#
+
+OBJS = inkey.o empty.o input.o waitfor.o waitsync.o xmit.o \
+ speed.o format.o flowctrl.o interactive.o stty.o
+
+.c.o:
+ $(CC) $(CFLAGS) $(OPTIMIZE) -I.. -o $@ -c $<
+ $(AR) r ../lib/libdev.a $@
+
+all: $(OBJS)
+ ranlib ../lib/libdev.a
+
+clean:
+ rm *.o
+