revert the last change to this Makefile which removed the rules to build

app_apt.  These rules *are* needed beacause this module uses libtonezone,
so it needs this information from autoconf in case it is located in a
non-standard location.  Also, without it, app_rpt.so would not be linked
with libtonezone at all.


git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@23422 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Russell Bryant 2006-04-29 19:26:53 +00:00
parent 28efe8a845
commit b97d58024e
1 changed files with 6 additions and 0 deletions

View File

@ -37,6 +37,12 @@ clean: clean-depend
%.so: %.o
$(CC) $(SOLINK) -o $@ $<
app_rpt.so: app_rpt.o
$(CC) $(SOLINK) -o $@ $< $(ZAPTEL_LIB)
app_rpt.o: app_rpt.c
$(CC) $(SOLINK) -o $@ $< $(ZAPTEL_INCLUDE)
install: all
for x in $(MODS); do $(INSTALL) -m 755 $$x $(DESTDIR)$(MODULES_DIR) ; done
rm -f $(DESTDIR)$(MODULES_DIR)/app_cut.so