From c70c87d3865c9e591b08c2d49cccbc776a136fab Mon Sep 17 00:00:00 2001 From: daniel Date: Sat, 5 Jan 2013 16:30:05 +0900 Subject: add a work in progress "vxi-11 client library" and test client.. this will become the perl module later --- libvxi11client/Makefile | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 libvxi11client/Makefile (limited to 'libvxi11client/Makefile') 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 -- cgit