dect
/
asterisk
Archived
13
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

31 lines
533 B
Makefile
Executable File

#
# Don't use ast mm routines
#
CFLAGS+=-DNO_AST_MM
TARGET=$(shell if [ -f /usr/include/newt.h ]; then echo "astman"; else echo "none" ; fi)
all: depend $(TARGET)
install:
if [ "$(TARGET)" != "none" ]; then \
for x in $(TARGET); do \
install -m 755 $$x $(ASTSBINDIR)/astman; \
done ; \
fi
none:
@echo Not building the Asterisk Manager "astman"
clean:
rm -f *.o astman .depend
astman: astman.o ../md5.o
$(CC) -o astman astman.o ../md5.o -lnewt
include .depend
depend: .depend
.depend:
../mkdep $(CFLAGS) `ls *.c`