]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
Remove the requirement to define MODNAME in the module makefiles.
authorMichael Jerris <mike@jerris.com>
Sat, 17 Mar 2007 05:49:57 +0000 (05:49 +0000)
committerMichael Jerris <mike@jerris.com>
Sat, 17 Mar 2007 05:49:57 +0000 (05:49 +0000)
Remove gmakeisms from the modmake.rules module makefile include
Remove the MODNAME def from all the in tree Makefiles

git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@4628 d0543943-73ff-0310-b7d9-9358b9ac24b2

36 files changed:
build/modmake.rules.in
src/mod/applications/mod_enum/Makefile
src/mod/asr_tts/mod_cepstral/Makefile
src/mod/asr_tts/mod_lumenvox/Makefile
src/mod/codecs/mod_amr/Makefile
src/mod/codecs/mod_g711/Makefile
src/mod/codecs/mod_g722/Makefile
src/mod/codecs/mod_g723_1/Makefile
src/mod/codecs/mod_g726/Makefile
src/mod/codecs/mod_g729/Makefile
src/mod/codecs/mod_gsm/Makefile
src/mod/codecs/mod_ilbc/Makefile
src/mod/codecs/mod_lpc10/Makefile
src/mod/codecs/mod_speex/Makefile
src/mod/directories/mod_ldap/Makefile
src/mod/endpoints/mod_dingaling/Makefile
src/mod/endpoints/mod_iax/Makefile
src/mod/endpoints/mod_portaudio/Makefile
src/mod/endpoints/mod_sofia/Makefile
src/mod/endpoints/mod_wanpipe/Makefile
src/mod/event_handlers/mod_cdr/Makefile
src/mod/event_handlers/mod_xmpp_event/Makefile
src/mod/event_handlers/mod_zeroconf/Makefile
src/mod/formats/mod_shout/Makefile
src/mod/formats/mod_sndfile/Makefile
src/mod/languages/mod_mono/Makefile
src/mod/languages/mod_perl/Makefile
src/mod/languages/mod_python/Makefile
src/mod/languages/mod_spidermonkey/Makefile
src/mod/languages/mod_spidermonkey_core_db/Makefile
src/mod/languages/mod_spidermonkey_etpan/Makefile
src/mod/languages/mod_spidermonkey_odbc/Makefile
src/mod/languages/mod_spidermonkey_skel/Makefile
src/mod/languages/mod_spidermonkey_teletone/Makefile
src/mod/xml_int/mod_xml_curl/Makefile
src/mod/xml_int/mod_xml_rpc/Makefile

index 1d68c39ef6dee0605ee73d296251fdce4a2d11e2..b61420ad6f6a4ea87c371a0def206f31a1633a29 100644 (file)
@@ -21,21 +21,18 @@ LIBCURL_CPPFLAGS=@LIBCURL_CPPFLAGS@
 CURL_DIR=$(switch_srcdir)/libs/curl
 CURLLA=$(CURL_DIR)/lib/libcurl.la
 
-OUR_CFLAGS=$(shell test -z "$(WANT_CURL)" || echo $(LIBCURL_CPPFLAGS))
-OUR_LDFLAGS=$(shell test -z "$(WANT_CURL)" || echo $(LIBCURL))
-OUR_DEPS=$(shell test -z "$(WANT_CURL)" || if test ! -z "$(LIBCURL_DEPS)"; then echo $(CURLLA); fi)
-
-LDFLAGS=@SWITCH_AM_LDFLAGS@ @LDFLAGS@ $(OUR_LDFLAGS)
 LIBS=$(switch_builddir)/libfreeswitch.la
 DEFS=@DEFS@
 PREFIX = @prefix@
 
 DYLD_LIBRARY_PATH=$(PREFIX)/lib:$DYLD_LIBRARY_PATH
 LD_LIBRARY_PATH=$(PREFIX)/lib:$LD_LIBRARY_PATH
-OSARCH=$(shell uname -s)
+OSARCH=`uname -s`
 DYNAMIC_LIB_EXTEN = @DYNAMIC_LIB_EXTEN@
 SOLINK = @SOLINK@
 
+LDFLAGS=@SWITCH_AM_LDFLAGS@ @LDFLAGS@ $(OUR_LDFLAGS)
+
 ALL_CFLAGS   = $(LOCAL_CFLAGS) $(MOD_CFLAGS) @SWITCH_AM_CFLAGS@ @CFLAGS@ -D_GNU_SOURCE $(OUR_CFLAGS)
 ALL_CXXFLAGS   = $(LOCAL_CFLAGS) $(MOD_CFLAGS) @SWITCH_AM_CXXFLAGS@ @CXXFLAGS@ -D_GNU_SOURC $(OUR_CFLAGS)
 
@@ -47,24 +44,64 @@ CXXCOMPILE = $(CXX) $(ALL_CXXFLAGS) $(DEFS)
 LTCXXCOMPILE = $(LIBTOOL) --mode=compile --tag=CXX $(CXXCOMPILE)
 CXXLINK = $(LIBTOOL) --mode=link --tag=CXX $(CXXLD) $(ALL_CXXFLAGS) $(LDFLAGS) -o $@
 
-CURDIR=$(shell pwd)
-CSOURCEFILE=$(CURDIR)/$(MODNAME).c
-CXXSOURCEFILE=$(CURDIR)/$(MODNAME).cpp
-SOURCEFILE=$(shell if test -f $(CSOURCEFILE); then echo $(CSOURCEFILE); else echo $(CXXSOURCEFILE); fi;)
-
-all: local_depend local_all $(MODNAME).$(DYNAMIC_LIB_EXTEN) Makefile
-depend: local_depend
-clean: local_clean mod_clean
-install: all depend_install local_install mod_install
-uninstall: local_uninstall mod_uninstall
-distclean: clean local_distclean
-extraclean: distclean local_extraclean
+CSOURCEFILE=$(MODNAME).c
+CXXSOURCEFILE=$(MODNAME).cpp
+
+RECURSE_MODNAME=`pwd | sed -e 's|^.*/||'`
+RECURSE_SOURCEFILE=`if test -f $$modname.cpp; then echo $$modname.cpp; else echo $$modname.c; fi`
+RECURSE_OUR_DEPS=`test -z "$(WANT_CURL)" || if test ! -z "$(LIBCURL_DEPS)"; then echo $(CURLLA); fi`
+RECURSE_OUR_CFLAGS=`test -z "$(WANT_CURL)" || echo $(LIBCURL_CPPFLAGS)`
+RECURSE_OUR_LDFLAGS=`test -z "$(WANT_CURL)" || echo $(LIBCURL)`
+RECURSE_CHECKS=if test -z "$(MODNAME)" || test -z "$(SOURCEFILE)" || test -z "$(OUR_DEPS)" ; \
+       then modname=$(RECURSE_MODNAME) ; \
+       sourcefile=$(RECURSE_SOURCEFILE) ; \
+       ourdefs=$(RECURSE_OUR_DEPS) ; \
+       ourcflags=$(RECURSE_OUR_CFLAGS) ; \
+       ourldflags=$(RECURSE_OUR_LDFLAGS) ;
+
+all: Makefile
+       @$(RECURSE_CHECKS) \
+         $(MAKE) MODNAME=$$modname SOURCEFILE=$$sourcefile OUR_DEPS=$$ourdefs OUR_CFLAGS=$$ourcflags OUR_LDFLAGS=$$our_ldflags all-modules || exit 1;\
+       fi
+depend: Makefile
+       @$(RECURSE_CHECKS) \
+         $(MAKE) MODNAME=$$modname SOURCEFILE=$$sourcefile OUR_DEPS=$$ourdefs OUR_CFLAGS=$$ourcflags OUR_LDFLAGS=$$our_ldflags depend-modules || exit 1;\
+       fi
+clean: Makefile
+       @$(RECURSE_CHECKS) \
+         $(MAKE) MODNAME=$$modname SOURCEFILE=$$sourcefile OUR_DEPS=$$ourdefs OUR_CFLAGS=$$ourcflags OUR_LDFLAGS=$$our_ldflags clean-modules || exit 1;\
+       fi
+install: Makefile
+       @$(RECURSE_CHECKS) \
+         $(MAKE) MODNAME=$$modname SOURCEFILE=$$sourcefile OUR_DEPS=$$ourdefs OUR_CFLAGS=$$ourcflags OUR_LDFLAGS=$$our_ldflags install-modules || exit 1;\
+       fi
+uninstall: Makefile
+       @$(RECURSE_CHECKS) \
+         $(MAKE) MODNAME=$$modname SOURCEFILE=$$sourcefile OUR_DEPS=$$ourdefs OUR_CFLAGS=$$ourcflags OUR_LDFLAGS=$$our_ldflags uninstall-modules || exit 1;\
+       fi
+distclean: Makefile
+       @$(RECURSE_CHECKS) \
+         $(MAKE) MODNAME=$$modname SOURCEFILE=$$sourcefile OUR_DEPS=$$ourdefs OUR_CFLAGS=$$ourcflags OUR_LDFLAGS=$$our_ldflags distclean-modules || exit 1;\
+       fi
+extraclean: Makefile
+       @$(RECURSE_CHECKS) \
+         $(MAKE) MODNAME=$$modname SOURCEFILE=$$sourcefile OUR_DEPS=$$ourdefs OUR_CFLAGS=$$ourcflags OUR_LDFLAGS=$$our_ldflags extraclean-modules || exit 1;\
+       fi
+
+
+all-modules: local_depend local_all $(MODNAME).$(DYNAMIC_LIB_EXTEN) Makefile
+depend-modules: local_depend
+clean-modules: local_clean mod_clean
+install-modules: all depend_install local_install mod_install
+uninstall-modules: local_uninstall mod_uninstall
+distclean-modules: clean local_distclean
+extraclean-modules: distclean local_extraclean
 
 Makefile:
-       if test ! -f $@; then \
-         echo MODNAME=$(MODNAME) > Makefile ; \
+       @if test ! -f $@; then \
          if ! pwd | grep $(switch_srcdir)/src/mod ; then rulesdir=$(switch_srcdir) ; else rulesdir=../../../.. ; fi ; \
-         echo include $$rulesdir/build/modmake.rules >> Makefile ; \
+         echo BASE=$$rulesdir > Makefile ; \
+         echo "include $(BASE)/build/modmake.rules" >> Makefile ; \
        fi ;
 
 $(CURLLA):
@@ -171,7 +208,8 @@ $(switch_srcdir)/src/include/switch_log.h:
 
 $(switch_srcdir)/src/include/switch_xml.h:
 
-.PHONY: all depend clean local_all local_depend \
-       install depend_install local_install mod_install \
-       clean local_clean mod_clean distclean \
-       local_distclean extraclean local_extraclean 
+
+.PHONY: all clean depend install distclean extraclean \
+       all-modules clean-modules depend-modules install-modules distclean-modules extraclean-modules \
+       local_all local_clean local_depend local_install local_distclean local_extraclean \
+       mod_clean mod_install mod_uninstall depend_install
index cc145874c9413c2c98adf2b21a99bdcff29ded34..060c5e7fda1cc2297e6ddd40d1b7180dd5e1798f 100644 (file)
@@ -1,4 +1,4 @@
-MODNAME=mod_enum
+
 BASE=../../../..
 UDNSA=$(BASE)/libs/udns/libudns.a
 LOCAL_CFLAGS=-I$(BASE)/libs/udns
index e5ff260078c23f2c8b5c08ef6cf0f50d79bde842..c96e2b39969577777f79458f2e0fb55fabda574d 100644 (file)
@@ -2,7 +2,7 @@
 # local_all local_depend local_clean depend_install local_install local_distclean local_extraclean:
 OSARCH=$(shell uname -s)
 # and define these variables to impact your build
-MODNAME=mod_cepstral
+
 
 ifeq ($(OSARCH),Darwin)
 LOCAL_LDFLAGS += -framework swift
index 75bea42da1e0f5f24c5f712c4e75570b5cd1288f..7d933bf15a8bc9241b238c1603c078bab308243e 100644 (file)
@@ -2,7 +2,7 @@
 # local_all local_depend local_clean depend_install local_install local_distclean local_extraclean:
 
 # and define these variables to impact your build
-MODNAME=mod_lumenvox
+
 LOCAL_CFLAGS= -fpermissive -Wno-deprecated -Wno-conversion -fpermissive -Wno-unused -Wno-comment -Wno-sign-compare \
        -Wno-conversion -Wno-reorder -I/opt/lumenvox/eng\ine_7.0/include
 LOCAL_LDFLAGS= -L/opt/lumenvox/engine_7.0/lib -llv_lvspeechport
index bbdc825752ee9e000f0cd5717a377e4edbba6cba..30d1c53337a7b64e38f7dc4b9aed406a72d9a94f 100644 (file)
@@ -1,4 +1,4 @@
-MODNAME=mod_amr
+
 BASE=../../../..
 
 topdir=$(shell cd $(BASE) && pwd)
index 3d182e6c9cbff4a80f93a31d73ef879f4b365a90..beb0e8db72bd7cda7a259d51c584767093afc9cf 100644 (file)
@@ -2,7 +2,7 @@
 # local_all local_depend local_clean depend_install local_install local_distclean local_extraclean:
 
 # and define these variables to impact your build
-MODNAME=mod_g711
+
 LOCAL_CFLAGS=-I$(BASE)/libs/codec/g7xx/src/include
 LOCAL_LDFLAGS=
 LOCAL_OBJS=
index 60aca28462f504313cb30a8d2348fb6ee6a505e1..28c7ded0490af10e6c0154efa92e4749bf32ea05 100644 (file)
@@ -1,4 +1,4 @@
-MODNAME=mod_g722
+
 BASE=../../../..
 G7XXLA=$(BASE)/libs/codec/g7xx/libg7xx.la
 LOCAL_CFLAGS=-I$(BASE)/libs/codec/g7xx/src/include/
index bf699a3fd91e4ddd0f4246e83b1900bc949e7f82..241ebe5c9783099fcf00c49c16b26c9c390bc2e0 100644 (file)
@@ -1,4 +1,4 @@
-MODNAME=mod_g723_1
+
 BASE=../../../..
 topdir=$(shell cd $(BASE) && pwd)
 ifeq ($(shell test -d $(topdir)/libs/libg723_1 && cd $(topdir)/libs/libg723_1 && pwd),$(topdir)/libs/libg723_1)
index 82247809027adce3836247a5fa24d2f787ab978a..0c1b49e6d08f6cf627f1333c98bc7baf40665ce9 100644 (file)
@@ -1,4 +1,4 @@
-MODNAME=mod_g726
+
 BASE=../../../..
 G726LA=$(BASE)/libs/codec/g726/libg726.la
 LOCAL_CFLAGS=-I$(BASE)/libs/codec/g726/src
index 9000b2a29e18e908df176282cd7b868cf3cb3cef..aa98f1977902d0a5fd65e1507160f6d869636116 100644 (file)
@@ -1,4 +1,4 @@
-MODNAME=mod_g729
+
 BASE=../../../..
 topdir=$(shell cd $(BASE) && pwd)
 ifeq ($(shell test -d $(topdir)/libs/libg729 && cd $(topdir)/libs/libg729 && pwd),$(topdir)/libs/libg729)
index 0ee7c15fac5dca28f8ec8a6cadd50cd3b5dfc4bb..6e3649b64c36a2eca5ad0fb96c9c14f7668281aa 100644 (file)
@@ -1,4 +1,4 @@
-MODNAME=mod_gsm
+
 BASE=../../../..
 GSMLA=$(BASE)/libs/codec/gsm/libgsm.la
 LOCAL_CFLAGS=-I$(BASE)/libs/codec/gsm/inc
index 39a9b0a93a5a69734474bb84a19b5059a20fac7d..34aa9b4da3e409ff3293e08df1b368edfccc8cc4 100644 (file)
@@ -1,4 +1,4 @@
-MODNAME=mod_ilbc
+
 BASE=../../../..
 ILBCLA=$(BASE)/libs/codec/ilbc/libilbc.la
 LOCAL_CFLAGS=-I$(BASE)/libs/codec/ilbc/src
index f5e969293a021849e7552e06c647d150b9e7c3a0..985a328449b61d8fa98061a44cc03d9c46bad18b 100644 (file)
@@ -1,4 +1,4 @@
-MODNAME=mod_lpc10
+
 BASE=../../../..
 LPC10LA=$(BASE)/libs/codec/lpc10/liblpc10.la
 LOCAL_CFLAGS=-I$(BASE)/libs/codec/lpc10/src
index f5f2fe0dbc41da83128c12e8308423b3f79ba6cc..2a95459a5f72f182a4dfb4e704b431247d5ff4d0 100644 (file)
@@ -2,7 +2,7 @@
 # local_all local_depend local_clean depend_install local_install local_distclean local_extraclean:
 
 # and define these variables to impact your build
-MODNAME=mod_speex
+
 
 BASE=../../../..
 
index 0e5a32344c4d407eef579a9f2cbdd877e9e8b9e0..647ad49ade805a0b9393833042f2e8bd22d53851 100644 (file)
@@ -1,4 +1,4 @@
-MODNAME=mod_ldap
+
 switch_srcdir=../../../..
 
 LDAP=openldap-2.3.19
index f8eaa5f0b2fefe48ff81fb5793a54f54933bd878..7ed422b5a5ee42313915498451cd3febe85c2b0c 100644 (file)
@@ -2,7 +2,7 @@
 # local_all local_depend local_clean depend_install local_install local_distclean local_extraclean:
 
 # and define these variables to impact your build
-MODNAME=mod_dingaling
+
 BASE=../../../..
 
 IKSEMELLA=$(BASE)/libs/iksemel/src/libiksemel.la
index 528edfe87576aa3559845b0c350d3e0d0161502e..33a8050c706ed2ee0895ed099600b55cffc89d6d 100644 (file)
@@ -2,7 +2,7 @@
 # local_all local_depend local_clean depend_install local_install local_distclean local_extraclean:
 
 # and define these variables to impact your build
-MODNAME=mod_iax
+
 BASE=../../../..
 IAXLA=$(BASE)/libs/iax/src/libiax.la
 LOCAL_CFLAGS=-I$(BASE)/libs/iax/src
index eb7d36df236c834d8b734608e8879889dc826f27..305fbf16bce4012a264faa12bd08c3d4aaa5ac9a 100644 (file)
@@ -1,6 +1,6 @@
 BASE=../../../..
 OSARCH=$(shell uname -s)
-MODNAME=mod_portaudio
+
 BASE=../../../..
 
 PALA=$(BASE)/libs/portaudio/lib/libportaudio.la
index e1287495becd46368552640855148fdfcc297779..d6437c74659969e5bb7aff309a9b6f3199b8e912 100644 (file)
@@ -1,4 +1,4 @@
-MODNAME=mod_sofia
+
 
 BASE=../../../..
 
index 1ad0ea879cf6b89cb007c567dff3a4057bf6ad13..04f810a5a9c1da3c52be3cec64494f9c07d2bf37 100644 (file)
@@ -2,7 +2,7 @@
 # local_all local_depend local_clean depend_install local_install local_distclean local_extraclean:
 
 # and define these variables to impact your build
-MODNAME=mod_wanpipe
+
 LOCAL_CFLAGS  =-I/usr/local/include -I/usr/src/libpri -I/usr/src/linux/include -I. -I/usr/include 
 LOCAL_CFLAGS +=-D__LINUX__ -D_REENTRANT -D_GNU_SOURCE -DAFT_A104 -DWANPIPE_TDM_API -I$(switch_srcdir)/libs/libteletone/src
 LOCAL_LDFLAGS=-lsangoma $(BASE)/libs/libteletone/libteletone.la
index 944a4650f4bb3c1651bf4e47307b939aa9563546..6de5933e2edd160c08d80f664e85fdc4f45a8acd 100644 (file)
@@ -2,7 +2,7 @@
 # local_all local_depend local_clean depend_install local_install local_distclean local_extraclean:
 
 # and define these variables to impact your build
-MODNAME=mod_cdr
+
 LOCAL_CFLAGS=
 LOCAL_LDFLAGS=
 LOCAL_OBJS=cdrcontainer.o basecdr.o baseregistry.o pddcdr.o csvcdr.o xmlcdr.o sqlitecdr.o
index ff2e378efb37f396ea93c61bcb64cc1bb45bae7e..d6e0ce8fe9c1db4f6fb0b5f98466b0afde482e9d 100644 (file)
@@ -2,7 +2,7 @@
 # local_all local_depend local_clean depend_install local_install local_distclean local_extraclean:
 
 # and define these variables to impact your build
-MODNAME=mod_xmpp_event
+
 BASE=../../../..
 
 IKSEMELLA=$(BASE)/libs/iksemel/src/libiksemel.la
index 0a7680c970267ecc768292044fae0eb11b2c9d3c..514494217bcca358da58074d141b56540a4a644f 100644 (file)
@@ -1,4 +1,4 @@
-MODNAME=mod_zeroconf
+
 switch_srcdir=../../../..
 
 HOWL=howl-1.0.0
index 3926de16571ee263a41948c48bb56b5ed5d6d6de..5fcc549f23518d72ff2c7f2abc2fd3e03c48d2d6 100644 (file)
@@ -1,4 +1,4 @@
-MODNAME=mod_shout
+
 LAME=lame-3.97
 SHOUT=libshout-2.2.2
 switch_srcdir=../../../..
index 6166f4de7ec8c958c654dfa28f7932c4d1efcfae..dd3ab8265869e8ea5ad058b4b0040e0b4fbb7785 100644 (file)
@@ -2,7 +2,7 @@
 # local_all local_depend local_clean depend_install local_install local_distclean local_extraclean:
 
 # and define these variables to impact your build
-MODNAME=mod_sndfile
+
 
 BASE=../../../..
 
index a333e0f259e61da54439b41f0e270118ced1d04d..a01808e1426e85a28d45277d90d8f0e782ea07dd 100644 (file)
@@ -1,4 +1,4 @@
-MODNAME=mod_mono
+
 VERSION = mono-1.1.13.8
 TARBALL = mono-1.1.13.8.tar.gz
 GLIB_TARBALL = glib-2.12.3.tar.gz
index 2b08ca29102a8dea0d9cef32338c62511a112506..c989324ab0d25a4975911475711f5197fe7b786f 100644 (file)
@@ -2,7 +2,7 @@
 # local_all local_depend local_clean depend_install local_install local_distclean local_extraclean:
 
 # and define these variables to impact your build
-MODNAME=mod_perl
+
 LOCAL_CFLAGS=-DMULTIPLICITY $(shell $(PERL) -MExtUtils::Embed -e ccopts) -DEMBED_PERL
 LOCAL_LDFLAGS=$(shell $(PERL) -MExtUtils::Embed -e ldopts) $(shell $(PERL) -MConfig -e 'print $$Config{libs}')
 LOCAL_OBJS=perlxsi.o
index 3ef92765e028c3c9be32c7c7af4f03dc0f8ec966..da4031ea66991c086fb293c979f2f3c36db46d8e 100644 (file)
@@ -2,7 +2,7 @@
 # local_all local_depend local_clean depend_install local_install local_distclean local_extraclean:
 
 # and define these variables to impact your build
-MODNAME=mod_python
+
 LOCAL_CFLAGS=-I$(PREFIX)/include/python2.4/
 LOCAL_LDFLAGS=-lpython2.4 -L$(PREFIX)/lib/python2.4/config/  -lutil -lstdc++
 LOCAL_OBJS=freeswitch_python.o mod_python_wrap.o
index f0f295c0582ed68e637faa2cc36eaa69d26e9dda..0489478ff100c42c18cde46fe0f18d29ee05d603 100644 (file)
@@ -1,4 +1,4 @@
-MODNAME=mod_spidermonkey
+
 WANT_CURL=yes
 
 LOCAL_CFLAGS=
index 0c3c4df32687477433e3461d58a9432b2c7dc092..2734c2113bfd30f272a7d299d05d9568fdc9d423 100644 (file)
@@ -1,4 +1,4 @@
-MODNAME=mod_spidermonkey_core_db
+
 switch_srcdir=../../../..
 LOCAL_CFLAGS=
 LOCAL_LDFLAGS=
index ca767e88b8c416b3f45b1b4353b1cf2b59b69889..35c68c835937db5ca9283597e166740d47b8ab1b 100644 (file)
@@ -1,4 +1,4 @@
-MODNAME=mod_spidermonkey_etpan
+
 
 switch_srcdir=../../../..
 
index f228911e1b014a4a206be296425c9dabd1095874..ac00c9342611b1bfe3d70ac12994a18bc06bc170 100644 (file)
@@ -1,4 +1,4 @@
-MODNAME=mod_spidermonkey_odbc
+
 switch_srcdir=../../../..
 
 ODBC=unixODBC-2.2.12
index c1083d199d88c3234949df2c39bdf53b97059204..2734c2113bfd30f272a7d299d05d9568fdc9d423 100644 (file)
@@ -1,4 +1,4 @@
-MODNAME=mod_spidermonkey_skel
+
 switch_srcdir=../../../..
 LOCAL_CFLAGS=
 LOCAL_LDFLAGS=
index bf7b763d3a50b39c2528de14537789b7ff7b599f..0524e79da137cf4b56e1444324cb511462638fd1 100644 (file)
@@ -1,4 +1,4 @@
-MODNAME=mod_spidermonkey_teletone
+
 switch_srcdir=../../../..
 LOCAL_CFLAGS=-I$(switch_srcdir)/libs/libteletone/src
 LOCAL_LDFLAGS=
index 2244e8c0c32e478c7c5ad770ea5da80496beac56..cb9eba2527e6067d8f3d3e62f08725c741b4617c 100644 (file)
@@ -2,6 +2,6 @@
 # local_all local_depend local_clean depend_install local_install local_distclean local_extraclean:
 
 # and define these variables to impact your build
-MODNAME=mod_xml_curl
+
 WANT_CURL=yes
 include ../../../../build/modmake.rules
index 93d59bc22267de5ec9dcd157f99797e4ec25d27a..97522cad2077c381c3deb77c4313ad5346b77f3f 100644 (file)
@@ -1,4 +1,4 @@
-MODNAME=mod_xml_rpc
+
 BASE=../../../..
 
 XMLRPCLAS  = $(BASE)/libs/xmlrpc-c/src/libxmlrpc.la $(BASE)/libs/xmlrpc-c/src/libxmlrpc_server.la