aboutsummaryrefslogtreecommitdiffstats
path: root/sdk/net/Makefile.in
diff options
context:
space:
mode:
Diffstat (limited to 'sdk/net/Makefile.in')
-rw-r--r--sdk/net/Makefile.in19
1 files changed, 19 insertions, 0 deletions
diff --git a/sdk/net/Makefile.in b/sdk/net/Makefile.in
new file mode 100644
index 0000000..bc890f5
--- /dev/null
+++ b/sdk/net/Makefile.in
@@ -0,0 +1,19 @@
+#
+# Template to build net makefile.
+# $Id$
+# Copyright (c) 1997 by Tycho Softworks.
+#
+
+OBJS = snmptrap.o gethost.o getservice.o getsocket.o sockname.o \
+ tcpsocket.o udpsocket.o init.o tcpstream.o msgport.o netaddr.o
+
+.c.o:
+ $(CC) $(CFLAGS) $(OPTIMIZE) -I.. -o $@ -c $<
+ $(AR) r ../lib/libnet.a $@
+
+all: $(OBJS)
+ ranlib ../lib/libnet.a
+
+clean:
+ rm *.o
+