Annotation of embedaddon/coova-chilli/conf/Makefile.am, revision 1.1

1.1     ! misho       1: ## Process this file with automake to produce Makefile.in
        !             2: 
        !             3: sysconf_DATA = chilli.conf 
        !             4: 
        !             5: chillidir = $(sysconfdir)/chilli
        !             6: chilli_SCRIPTS = functions up.sh down.sh
        !             7: chilli_DATA = defaults 
        !             8: 
        !             9: initdir = $(sysconfdir)/init.d
        !            10: init_SCRIPTS = chilli
        !            11: 
        !            12: EXTRA_DIST = $(init_SCRIPTS:=.in) \
        !            13: $(chilli_SCRIPTS:=.in) chilli.conf.in defaults.in
        !            14: 
        !            15: edit = sed \
        !            16:        -e 's,@SBINDIR\@,$(sbindir),g' \
        !            17:        -e 's,@INITDIR\@,$(initrddir),g' \
        !            18:        -e 's,@VARRUN\@,$(localstatedir)/run,g' \
        !            19:        -e 's,@ETCCHILLI\@,$(sysconfdir)/chilli,g' \
        !            20:        -e 's,@SYSCONFDIR\@,$(sysconfdir),g' \
        !            21:        -e 's,@PREFIX\@,$(prefix),g'
        !            22: 
        !            23: functions: Makefile functions.in
        !            24:        rm -f functions functions.tmp
        !            25:        $(edit) functions.in >functions.tmp
        !            26:        mv functions.tmp functions
        !            27: 
        !            28: up.sh: Makefile up.sh.in
        !            29:        rm -f up.sh up.sh.tmp
        !            30:        $(edit) up.sh.in >up.sh.tmp
        !            31:        mv up.sh.tmp up.sh
        !            32: 
        !            33: down.sh: Makefile down.sh.in
        !            34:        rm -f down.sh down.sh.tmp
        !            35:        $(edit) down.sh.in >down.sh.tmp
        !            36:        mv down.sh.tmp down.sh
        !            37: 
        !            38: chilli: Makefile chilli.in
        !            39:        rm -f chilli chilli.tmp
        !            40:        $(edit) chilli.in >chilli.tmp
        !            41:        chmod +x chilli.tmp
        !            42:        mv chilli.tmp chilli
        !            43: 
        !            44: chilli.conf: Makefile chilli.conf.in
        !            45:        rm -f chilli.conf chilli.conf.tmp
        !            46:        $(edit) chilli.conf.in >chilli.conf.tmp
        !            47:        mv chilli.conf.tmp chilli.conf
        !            48: 
        !            49: defaults: Makefile defaults.in
        !            50:        rm -f defaults defaults.tmp
        !            51:        $(edit) defaults.in >defaults.tmp
        !            52:        mv defaults.tmp defaults
        !            53: 

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>