[svn-commits] branch murf/AEL2 r21206 - in /team/murf/AEL2/pbx: ./ aal/ ael/

svn-commits at lists.digium.com svn-commits at lists.digium.com
Tue Apr 18 13:28:26 MST 2006


Author: murf
Date: Tue Apr 18 15:28:13 2006
New Revision: 21206

URL: http://svn.digium.com/view/asterisk?rev=21206&view=rev
Log:
Added the aal and ael subdirs, moved items to their proper spots.
Changed makefile to agree/work. Set props on moved items.



Added:
    team/murf/AEL2/pbx/aal/
    team/murf/AEL2/pbx/aal/applist   (props changed)
      - copied unchanged from r20758, team/murf/AEL2/pbx/applist
    team/murf/AEL2/pbx/aal/argdesc.l   (props changed)
      - copied unchanged from r20758, team/murf/AEL2/pbx/argdesc.l
    team/murf/AEL2/pbx/aal/argdesc.tab.c   (props changed)
      - copied unchanged from r20758, team/murf/AEL2/pbx/argdesc.tab.c
    team/murf/AEL2/pbx/aal/argdesc.tab.h   (props changed)
      - copied unchanged from r20758, team/murf/AEL2/pbx/argdesc.tab.h
    team/murf/AEL2/pbx/aal/argdesc.y   (props changed)
      - copied unchanged from r20758, team/murf/AEL2/pbx/argdesc.y
    team/murf/AEL2/pbx/aal/argdesc_lex.c   (props changed)
      - copied unchanged from r20758, team/murf/AEL2/pbx/argdesc_lex.c
    team/murf/AEL2/pbx/ael/
    team/murf/AEL2/pbx/ael/ael.flex   (props changed)
      - copied unchanged from r20758, team/murf/AEL2/pbx/ael.flex
    team/murf/AEL2/pbx/ael/ael.tab.c   (props changed)
      - copied unchanged from r20758, team/murf/AEL2/pbx/ael.tab.c
    team/murf/AEL2/pbx/ael/ael.tab.h   (props changed)
      - copied unchanged from r20758, team/murf/AEL2/pbx/ael.tab.h
    team/murf/AEL2/pbx/ael/ael.y   (props changed)
      - copied unchanged from r20758, team/murf/AEL2/pbx/ael.y
    team/murf/AEL2/pbx/ael/ael_lex.c   (props changed)
      - copied unchanged from r20758, team/murf/AEL2/pbx/ael_lex.c
Removed:
    team/murf/AEL2/pbx/ael.flex
    team/murf/AEL2/pbx/ael.tab.c
    team/murf/AEL2/pbx/ael.tab.h
    team/murf/AEL2/pbx/ael.y
    team/murf/AEL2/pbx/ael_lex.c
    team/murf/AEL2/pbx/applist
    team/murf/AEL2/pbx/argdesc.l
    team/murf/AEL2/pbx/argdesc.tab.c
    team/murf/AEL2/pbx/argdesc.tab.h
    team/murf/AEL2/pbx/argdesc.y
    team/murf/AEL2/pbx/argdesc_lex.c
    team/murf/AEL2/pbx/pbx_ael.c
Modified:
    team/murf/AEL2/pbx/Makefile

Modified: team/murf/AEL2/pbx/Makefile
URL: http://svn.digium.com/view/asterisk/team/murf/AEL2/pbx/Makefile?rev=21206&r1=21205&r2=21206&view=diff
==============================================================================
--- team/murf/AEL2/pbx/Makefile (original)
+++ team/murf/AEL2/pbx/Makefile Tue Apr 18 15:28:13 2006
@@ -64,33 +64,33 @@
 pbx_dundi.so: dundi-parser.o pbx_dundi.o
 	$(CC) $(SOLINK) -o $@ ${CYGSOLINK} pbx_dundi.o dundi-parser.o -lz ${CYGSOLIB}
 
-pbx_ael2.o : aelflex.o aelbison.o ../include/asterisk/ael_structs.h argdesc.tab.o argdesc_lex.o
+pbx_ael.o : ael/aelflex.o ael/aelbison.o ../include/asterisk/ael_structs.h aal/argdesc.tab.o aal/argdesc_lex.o
 
-pbx_ael2.so : pbx_ael2.o aelbison.o aelflex.o argdesc.tab.o argdesc_lex.o
-	$(CC) $(SOLINK) -o $@ pbx_ael2.o aelbison.o aelflex.o argdesc.tab.o argdesc_lex.o
+pbx_ael.so : pbx_ael.o ael/aelbison.o ael/aelflex.o aal/argdesc.tab.o aal/argdesc_lex.o
+	$(CC) $(SOLINK) -o $@ ael/pbx_ael.o ael/aelbison.o ael/aelflex.o aal/argdesc.tab.o aal/argdesc_lex.o
 
-aelflex.o : ael_lex.c ../include/asterisk/ael_structs.h ael.tab.h
-	$(CC) $(CFLAGS) -c -o aelflex.o ael_lex.c
+ael/aelflex.o : ael_lex.c ../include/asterisk/ael_structs.h ael.tab.h
+	$(CC) $(CFLAGS) -c -o ael/aelflex.o ael/ael_lex.c
 
-aelbison.o : ael.tab.c ael.tab.h ../include/asterisk/ael_structs.h
-	$(CC) $(CFLAGS) -c -o aelbison.o ael.tab.c ## -DYYDEBUG
+ael/aelbison.o : ael.tab.c ael.tab.h ../include/asterisk/ael_structs.h
+	$(CC) $(CFLAGS) -c -o ael/aelbison.o ael/ael.tab.c ## -DYYDEBUG
 
-ael_lex.c : ael.flex
-	flex ael.flex
+ael/ael_lex.c : ael.flex
+	(cd ael; flex ael.flex)
 
-ael.tab.c ael.tab.h : ael.y
-	bison -v -d ael.y
+ael/ael.tab.c ael.tab.h : ael.y
+	(cd ael; bison -v -d ael.y)
 
-argdesc.tab.c argdesc.tab.h : argdesc.y
-	bison -v -d argdesc.y
+aal/argdesc.tab.c aal/argdesc.tab.h : aal/argdesc.y
+	(cd aal; bison -v -d argdesc.y )
 
-argdesc_lex.c : argdesc.l ../include/asterisk/argdesc.h
-	flex argdesc.l
+aal/argdesc_lex.c : argdesc.l ../include/asterisk/argdesc.h
+	(cd aal; flex argdesc.l)
 
 argdesc.tab.o : argdesc.tab.c argdesc.tab.h
 	$(CC) $(CFLAGS) -c -o argdesc.tab.o argdesc.tab.c ## -DYYDEBUG
 	
-argdesc_lex.o : argdesc_lex.c ../include/asterisk/argdesc.h argdesc.tab.h
+aal/argdesc_lex.o : argdesc_lex.c ../include/asterisk/argdesc.h argdesc.tab.h
 	$(CC) $(CFLAGS) -c -o argdesc_lex.o argdesc_lex.c
 
 

Propchange: team/murf/AEL2/pbx/aal/applist
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: team/murf/AEL2/pbx/aal/applist
------------------------------------------------------------------------------
    svn:keywords = Author Date Id Revision

Propchange: team/murf/AEL2/pbx/aal/applist
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Propchange: team/murf/AEL2/pbx/aal/argdesc.l
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: team/murf/AEL2/pbx/aal/argdesc.l
------------------------------------------------------------------------------
    svn:keywords = Author Date Id Revision

Propchange: team/murf/AEL2/pbx/aal/argdesc.l
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Propchange: team/murf/AEL2/pbx/aal/argdesc.tab.c
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: team/murf/AEL2/pbx/aal/argdesc.tab.c
------------------------------------------------------------------------------
    svn:keywords = Author Date Id Revision

Propchange: team/murf/AEL2/pbx/aal/argdesc.tab.c
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Propchange: team/murf/AEL2/pbx/aal/argdesc.tab.h
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: team/murf/AEL2/pbx/aal/argdesc.tab.h
------------------------------------------------------------------------------
    svn:keywords = Author Date Id Revision

Propchange: team/murf/AEL2/pbx/aal/argdesc.tab.h
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Propchange: team/murf/AEL2/pbx/aal/argdesc.y
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: team/murf/AEL2/pbx/aal/argdesc.y
------------------------------------------------------------------------------
    svn:keywords = Author Date Id Revision

Propchange: team/murf/AEL2/pbx/aal/argdesc.y
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Propchange: team/murf/AEL2/pbx/aal/argdesc_lex.c
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: team/murf/AEL2/pbx/aal/argdesc_lex.c
------------------------------------------------------------------------------
    svn:keywords = Author Date Id Revision

Propchange: team/murf/AEL2/pbx/aal/argdesc_lex.c
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Propchange: team/murf/AEL2/pbx/ael/ael.flex
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: team/murf/AEL2/pbx/ael/ael.flex
------------------------------------------------------------------------------
    svn:keywords = Author Date Id Revision

Propchange: team/murf/AEL2/pbx/ael/ael.flex
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Propchange: team/murf/AEL2/pbx/ael/ael.tab.c
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: team/murf/AEL2/pbx/ael/ael.tab.c
------------------------------------------------------------------------------
    svn:keywords = Author Date Id Revision

Propchange: team/murf/AEL2/pbx/ael/ael.tab.c
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Propchange: team/murf/AEL2/pbx/ael/ael.tab.h
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: team/murf/AEL2/pbx/ael/ael.tab.h
------------------------------------------------------------------------------
    svn:keywords = Author Date Id Revision

Propchange: team/murf/AEL2/pbx/ael/ael.tab.h
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Propchange: team/murf/AEL2/pbx/ael/ael.y
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: team/murf/AEL2/pbx/ael/ael.y
------------------------------------------------------------------------------
    svn:keywords = Author Date Id Revision

Propchange: team/murf/AEL2/pbx/ael/ael.y
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Propchange: team/murf/AEL2/pbx/ael/ael_lex.c
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: team/murf/AEL2/pbx/ael/ael_lex.c
------------------------------------------------------------------------------
    svn:keywords = Author Date Id Revision

Propchange: team/murf/AEL2/pbx/ael/ael_lex.c
------------------------------------------------------------------------------
    svn:mime-type = text/plain



More information about the svn-commits mailing list