aboutsummaryrefslogtreecommitdiffstats
path: root/sdk/other/Makefile.in
diff options
context:
space:
mode:
Diffstat (limited to 'sdk/other/Makefile.in')
-rw-r--r--sdk/other/Makefile.in22
1 files changed, 22 insertions, 0 deletions
diff --git a/sdk/other/Makefile.in b/sdk/other/Makefile.in
new file mode 100644
index 0000000..17dd18a
--- /dev/null
+++ b/sdk/other/Makefile.in
@@ -0,0 +1,22 @@
+#
+# Template to build our "other" object modules(libother.a)
+# $Id: Makefile.in 1.2 Wed, 19 Mar 1997 12:44:53 -0500 dyfet $
+# Copyright (c) 1997 by Tycho Softworks.
+#
+
+OBJS = memalloc.o memdup.o memfree.o mempool.o memrelease.o \
+ memreq.o config.o confdir.o bcd.o env.o atob.o strint.o \
+ expand.o picture.o xval.o hex.o strcopy.o strdiff.o \
+ strblank.o strpos.o strreq.o strtrim.o ccount.o filename.o \
+ isftype.o getargv.o search.o token.o fatal.o fncat.o
+
+.c.o:
+ $(CC) $(CFLAGS) $(OPTIMIZE) -I.. -o $@ -c $<
+ $(AR) r ../lib/libother.a $@
+
+all: $(OBJS)
+ ranlib ../lib/libother.a
+
+clean:
+ rm *.o
+