Version 0.2.0 from FTP

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@490 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Mark Spencer
2002-07-27 14:29:35 +00:00
parent 995231efc7
commit 7370ed011e

17
astman/Makefile Executable file
View File

@@ -0,0 +1,17 @@
TARGET=$(shell if [ -f /usr/include/newt.h ]; then echo "astman"; fi)
all: $(TARGET)
install:
mkdir -p /usr/sbin
if [ "$(TARGET)" != "" ]; then \
for x in $(TARGET); do \
install -m 755 $$x /usr/sbin/astman; \
done ; \
fi
clean:
rm -f *.o astman
astman: astman.o
$(CC) -o astman astman.o -lnewt