aboutsummaryrefslogtreecommitdiffstats
path: root/sdk/std/Makefile.in
diff options
context:
space:
mode:
Diffstat (limited to 'sdk/std/Makefile.in')
-rw-r--r--sdk/std/Makefile.in18
1 files changed, 18 insertions, 0 deletions
diff --git a/sdk/std/Makefile.in b/sdk/std/Makefile.in
new file mode 100644
index 0000000..d8f600b
--- /dev/null
+++ b/sdk/std/Makefile.in
@@ -0,0 +1,18 @@
+#
+# Template to build standard sdk object modules(libstd.a)
+# $Id: Makefile.in 1.2 Wed, 19 Mar 1997 12:44:53 -0500 dyfet $
+# Copyright (c) 1997 by Tycho Softworks.
+#
+
+OBJS = string.o utmp.o
+
+.c.o:
+ $(CC) $(CFLAGS) $(OPTIMIZE) -I.. -o $@ -c $<
+ $(AR) r ../lib/libstd.a $@
+
+all: $(OBJS)
+ ranlib ../lib/libstd.a
+
+clean:
+ rm *.o
+