[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]

[tor-commits] [flashproxy/master] Add "make install" target to websocket-transport.



commit 2b9df0fe490291bcdf6d8abb45f3812e6b334360
Author: David Fifield <david@xxxxxxxxxxxxxxx>
Date:   Mon Nov 26 21:11:50 2012 -0800

    Add "make install" target to websocket-transport.
---
 websocket-transport/Makefile |    9 ++++++++-
 1 files changed, 8 insertions(+), 1 deletions(-)

diff --git a/websocket-transport/Makefile b/websocket-transport/Makefile
index f144c4a..208569d 100644
--- a/websocket-transport/Makefile
+++ b/websocket-transport/Makefile
@@ -1,3 +1,6 @@
+PREFIX = /usr/local
+BINDIR = $(PREFIX)/bin
+
 PROGRAMS = websocket-client websocket-server
 
 all: websocket-server
@@ -8,10 +11,14 @@ websocket-server: websocket-server.go pt.go websocket.go
 %: %.go
 	go build -o $@ $^
 
+install:
+	mkdir -p $(BINDIR)
+	cp -f websocket-server $(BINDIR)
+
 clean:
 	rm -f $(PROGRAMS)
 
 fmt:
 	go fmt
 
-.PHONY: all clean fmt
+.PHONY: all install clean fmt



_______________________________________________
tor-commits mailing list
tor-commits@xxxxxxxxxxxxxxxxxxxx
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits