summaryrefslogtreecommitdiff
path: root/libvxi11client/Makefile
diff options
context:
space:
mode:
authordaniel <danieruru@gmail.com>2013-01-05 16:30:05 +0900
committerdaniel <danieruru@gmail.com>2013-01-05 16:30:05 +0900
commitc70c87d3865c9e591b08c2d49cccbc776a136fab (patch)
treebe4b67b462d4238a94d09399855011390d2fc273 /libvxi11client/Makefile
parent42d30a78def5b5a0f48ce47f0e8cd77eaf8a2452 (diff)
add a work in progress "vxi-11 client library" and test client.. this will become the perl module later
Diffstat (limited to 'libvxi11client/Makefile')
-rw-r--r--libvxi11client/Makefile21
1 files changed, 21 insertions, 0 deletions
diff --git a/libvxi11client/Makefile b/libvxi11client/Makefile
new file mode 100644
index 0000000..2e3f129
--- /dev/null
+++ b/libvxi11client/Makefile
@@ -0,0 +1,21 @@
+all: client
+
+client: libvxi11client.o vxi11_clnt.o vxi11_xdr.o client.o
+ $(CC) -o $@ $^
+
+client.o: client.c
+ $(CC) -c $^
+
+libvxi11client.o: libvxi11client.c libvxi11client.h
+ $(CC) -c $<
+
+vxi11_clnt.o: vxi11_clnt.c
+ $(CC) -c $<
+
+vxi11_xdr.o: vxi11_xdr.c
+ $(CC) -c $^
+
+.PHONY: clean perl
+
+clean:
+ -rm *.o client