summaryrefslogtreecommitdiff
path: root/utils/Makefile
diff options
context:
space:
mode:
authorMark Spencer <markster@digium.com>2004-12-11 22:36:27 +0000
committerMark Spencer <markster@digium.com>2004-12-11 22:36:27 +0000
commit30bc3eec6e1d59a447a4787f1f44838839e6919e (patch)
treede6f2fba390ca56e9749d76cc50a31359cad6188 /utils/Makefile
parent442e1403a8cbf7867f7347e70f5499871c291710 (diff)
Merge sms stuff and move to "utils" subdir (bug #2973)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@4429 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'utils/Makefile')
-rwxr-xr-xutils/Makefile43
1 files changed, 43 insertions, 0 deletions
diff --git a/utils/Makefile b/utils/Makefile
new file mode 100755
index 000000000..ef262b19e
--- /dev/null
+++ b/utils/Makefile
@@ -0,0 +1,43 @@
+#
+# Don't use ast mm routines
+#
+CFLAGS+=-DNO_AST_MM
+
+OSARCH=$(shell uname -s)
+ifeq ($(findstring BSD,${OSARCH}),BSD)
+CFLAGS+=-I/usr/local/include -L/usr/local/lib
+endif
+
+TARGET+=$(shell if [ -f /usr/include/popt.h ]; then echo "smsq"; else if [ -f /usr/local/include/popt.h ]; then echo "smsq"; fi ; fi)
+TARGET+=$(shell if [ -f /usr/include/newt.h ]; then echo "astman"; else if [ -f /usr/local/include/newt.h ]; then echo "astman"; fi ; fi)
+
+all: depend $(TARGET)
+
+install:
+ if [ "$(TARGET)" != "none" ]; then \
+ for x in $(TARGET); do \
+ install -m 755 $$x $(DESTDIR)$(ASTSBINDIR)/astman; \
+ done ; \
+ fi
+
+none:
+ @echo Not building the Asterisk Manager "astman"
+
+clean:
+ rm -f *.o astman .depend
+
+astman: astman.o ../md5.o
+ $(CC) $(CFLAGS) -o astman astman.o ../md5.o -lnewt
+
+smsq: smsq.o
+ $(CC) $(CFLAGS) -o smsq smsq.o -lpopt
+
+ifneq ($(wildcard .depend),)
+include .depend
+endif
+
+depend: .depend
+
+.depend:
+ ../mkdep $(CFLAGS) `ls *.c`
+