summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index 05c2e10..7627d50 100644
--- a/Makefile
+++ b/Makefile
@@ -3,7 +3,7 @@
OSARCH=$(shell uname -s)
OSREV=$(shell uname -r)
-VERSION := 1.21
+VERSION := 1.22pre
DESTDIR ?=
CONFDIR:=/etc/asterisk
CONFDIR_REAL := $(DESTDIR)/etc/asterisk
@@ -73,8 +73,8 @@ VPATH = src
# For printing only
-SRCS := $(MODS:%=%.c)
-HDRS := astmanproxy.h
+SRCS := $(MODS:%=src/%.c)
+HDRS := src/include/astmanproxy.h
all: astmanproxy cert
@@ -159,7 +159,7 @@ uninstall:
dist: clean
rm -rf /tmp/astmanproxy-${VERSION}*; \
- svn export . /tmp/astmanproxy-${VERSION}; \
+ cp -R . /tmp/astmanproxy-${VERSION}; \
cd /tmp; tar czf /tmp/astmanproxy-${VERSION}-`date +%Y%m%d-%H%M`.tgz astmanproxy-${VERSION}; \
/usr/bin/scp /tmp/astmanproxy-${VERSION}-*.tgz root@www.popvox.com:$(DISTDIR); \
/usr/bin/ssh -lroot www.popvox.com "ln -sf $(DISTDIR)/astmanproxy-${VERSION}-*.tgz $(DISTDIR)/astmanproxy-latest.tgz"