Archived
14
0
Fork 0
This repository has been archived on 2022-02-17. You can view files and clone it, but cannot push or open issues or pull requests.
asterisk/astman/Makefile
markster fd7f41a13f Fix astman build (bug #1930)
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@3321 f38db490-d61c-443f-a65b-d21fe96a405b
2004-06-26 19:25:39 +00:00

39 lines
773 B
Makefile
Executable file

#
# 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`