first cut of client
[spider.git] / src / Makefile
diff --git a/src/Makefile b/src/Makefile
new file mode 100644 (file)
index 0000000..09d6864
--- /dev/null
@@ -0,0 +1,11 @@
+#
+# makefile for the C programs for the DXSpider node
+#
+
+CFLAGS = -g -O
+
+CLIENTOBJ = client.o sel.o cmsg.o chain.o
+CLIENTBIN = client
+
+$(CLIENTBIN) : $(CLIENTOBJ)
+       $(CC) $(CFLAGS) $(CLIENTOBJ) -o $(CLIENTBIN) 
\ No newline at end of file