aboutsummaryrefslogtreecommitdiffstats
path: root/spo256/Makefile.in
diff options
context:
space:
mode:
Diffstat (limited to 'spo256/Makefile.in')
-rw-r--r--spo256/Makefile.in34
1 files changed, 34 insertions, 0 deletions
diff --git a/spo256/Makefile.in b/spo256/Makefile.in
new file mode 100644
index 0000000..6e21ea4
--- /dev/null
+++ b/spo256/Makefile.in
@@ -0,0 +1,34 @@
+#
+# Template to build spo256-AL2 text-to-speech server.
+# $Id: Makefile.in 1.2 Mon, 24 Mar 1997 12:25:37 -0500 dyfet $
+# Copyright (c) 1997 by Tycho Softworks.
+#
+
+OBJS = speak.o spo.o getspo.o words.o chars.o getidx.o client.o \
+ number.o currency.o
+PROGS = spo256
+START = 10
+RUNLVLS = 3
+
+all: $(PROGS)
+
+install: $(PROGS)
+ install -s -g bin $(PROGS) $(SBINDIR)
+ ln -sf $(SBINDIR)/spo256 $(BINDIR)/speak
+ install -g bin speak.conf $(SYSCONFDIR)
+ ../sdk/bin/instinit speak $(START) $(RUNLVLS)
+ ../sdk/bin/instsvc services speak 800/tcp \# SPO256-AL2 Text-to-Speech service
+ ../sdk/bin/instman $(MANDIR) 1 speak
+ ../sdk/bin/instman $(MANDIR) 7 speak.conf
+ ../sdk/bin/instman $(MANDIR) 8 spo256
+
+clean:
+ -rm $(PROGS)
+ -rm $(OBJS)
+
+.c.o:
+ $(CC) $(CFLAGS) $(OPTIMIZE) -I../sdk -o $@ -c $<
+
+spo256: $(OBJS)
+ $(CC) $(CFLAGS) -L../sdk/lib $(LIBS) -o $@ $(OBJS) $(LIBS)
+