commit 98bb56a52c8729164221a7251c1a0d7e1414e1a0 Author: David Fifield david@bamsoftware.com Date: Mon Sep 5 01:59:53 2011 -0400
Add "make install".
This installs the local Python programs and doesn't do anything with the Flash. --- Makefile | 7 +++++++ 1 files changed, 7 insertions(+), 0 deletions(-)
diff --git a/Makefile b/Makefile index 20cd81b..3861c09 100644 --- a/Makefile +++ b/Makefile @@ -1,3 +1,6 @@ +PREFIX = /usr/local +BINDIR = $(PREFIX)/bin + MXMLC ?= mxmlc
TARGETS = swfcat.swf @@ -9,6 +12,10 @@ swfcat.swf: *.as badge.png %.swf: %.as $(MXMLC) -output $@ -static-link-runtime-shared-libraries $<
+install: + mkdir -p $(BINDIR) + cp -f connector.py crossdomaind.py facilitator.py $(BINDIR) + clean: rm -f $(TARGETS)