[asterisk-commits] trunk r23422 - /trunk/apps/Makefile
    asterisk-commits at lists.digium.com 
    asterisk-commits at lists.digium.com
       
    Sat Apr 29 12:26:54 MST 2006
    
    
  
Author: russell
Date: Sat Apr 29 14:26:53 2006
New Revision: 23422
URL: http://svn.digium.com/view/asterisk?rev=23422&view=rev
Log:
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.
Modified:
    trunk/apps/Makefile
Modified: trunk/apps/Makefile
URL: http://svn.digium.com/view/asterisk/trunk/apps/Makefile?rev=23422&r1=23421&r2=23422&view=diff
==============================================================================
--- trunk/apps/Makefile (original)
+++ trunk/apps/Makefile Sat Apr 29 14:26:53 2006
@@ -37,6 +37,12 @@
 %.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
    
    
More information about the asterisk-commits
mailing list