diff options
author | daniel <danieruru@gmail.com> | 2013-01-05 16:30:05 +0900 |
---|---|---|
committer | daniel <danieruru@gmail.com> | 2013-01-05 16:30:05 +0900 |
commit | c70c87d3865c9e591b08c2d49cccbc776a136fab (patch) | |
tree | be4b67b462d4238a94d09399855011390d2fc273 /libvxi11client/Makefile | |
parent | 42d30a78def5b5a0f48ce47f0e8cd77eaf8a2452 (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/Makefile | 21 |
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 |