aboutsummaryrefslogtreecommitdiffstats
path: root/astman/Makefile
diff options
context:
space:
mode:
authormarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2004-12-11 22:36:27 +0000
committermarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2004-12-11 22:36:27 +0000
commit780ddd6c3266ca87fd804fb6d98b989a5052904f (patch)
treede6f2fba390ca56e9749d76cc50a31359cad6188 /astman/Makefile
parent51c57be00e8771e13c86e1ffb3fdee211154859b (diff)
Merge sms stuff and move to "utils" subdir (bug #2973)
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@4429 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'astman/Makefile')
-rwxr-xr-xastman/Makefile38
1 files changed, 0 insertions, 38 deletions
diff --git a/astman/Makefile b/astman/Makefile
deleted file mode 100755
index 8a69ee0c8..000000000
--- a/astman/Makefile
+++ /dev/null
@@ -1,38 +0,0 @@
-#
-# 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/newt.h ]; then echo "astman"; else if [ -f /usr/local/include/newt.h ]; then echo "astman"; else echo "none" ; 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
-
-ifneq ($(wildcard .depend),)
-include .depend
-endif
-
-depend: .depend
-
-.depend:
- ../mkdep $(CFLAGS) `ls *.c`
-