aboutsummaryrefslogtreecommitdiffstats
path: root/astman/Makefile
blob: 239b11b0e12ce3f2a377aeae8e51885fcfcf44d7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
TARGET=$(shell if [ -f /usr/include/newt.h ]; then echo "astman"; else echo "none" ; fi)
all: $(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

astman: astman.o ../md5.o
	$(CC) -o astman astman.o ../md5.o -lnewt