Diff for /embedaddon/istgt/etc/Makefile.in between versions 1.1.1.1 and 1.1.1.2

version 1.1.1.1, 2012/02/21 16:42:02 version 1.1.1.2, 2012/10/09 09:13:23
Line 8  exec_prefix = @exec_prefix@ Line 8  exec_prefix = @exec_prefix@
 bindir   = @bindir@  bindir   = @bindir@
 sbindir  = @sbindir@  sbindir  = @sbindir@
 sysconfdir = @sysconfdir@  sysconfdir = @sysconfdir@
datadir  = @datarootdir@datarootdir = @datarootdir@
 datadir  = @datadir@
 libexecdir = @libexecdir@  libexecdir = @libexecdir@
   mandir   = @mandir@
   
 configdir = @configdir@  configdir = @configdir@
 mediadir = @mediadir@  mediadir = @mediadir@
   
 SED      = @SED@  SED      = @SED@
   INSTALL  = @INSTALL@
   MKDIR_P  = @MKDIR_P@
   
 source   =   source   = 
 header   =   header   = 
 document =   document = 
 sample   = auth.conf istgtcontrol.conf \  sample   = auth.conf istgtcontrol.conf \
        istgt.large.conf.in istgt.conf.in istgt.sh.in        istgt.large.conf.in istgt.conf.in \
         istgt.sh.in istgt_netbsd.sh.in istgt_linux.sh.in
 rctemplate = @rctemplate@
 rcdir    = @rcdir@
 rcfile   = $(rctemplate:.sh.in=.sh)
   
 DISTDIR = $(top_srcdir)/`cat $(top_srcdir)/distdir`  DISTDIR = $(top_srcdir)/`cat $(top_srcdir)/distdir`
 DISTFILES = Makefile.in \  DISTFILES = Makefile.in \
Line 29  DISTFILES = Makefile.in \ Line 37  DISTFILES = Makefile.in \
   
 #########################################################################  #########################################################################
   
all: istgt.large.conf istgt.conf istgt.sh.PHONY: all install install-dirs
 all: istgt.large.conf istgt.conf $(rcfile)
   
 istgt.large.conf:  istgt.large.conf:
         $(SED) -e 's:%%SYSCONFDIR%%:$(sysconfdir):g' \          $(SED) -e 's:%%SYSCONFDIR%%:$(sysconfdir):g' \
Line 39  istgt.conf: Line 48  istgt.conf:
         $(SED) -e 's:%%SYSCONFDIR%%:$(sysconfdir):g' \          $(SED) -e 's:%%SYSCONFDIR%%:$(sysconfdir):g' \
                 -e 's:%%CONFIGDIR%%:$(configdir):g' \                  -e 's:%%CONFIGDIR%%:$(configdir):g' \
                 -e 's:%%MEDIADIR%%:$(mediadir):g' < istgt.conf.in > $@                  -e 's:%%MEDIADIR%%:$(mediadir):g' < istgt.conf.in > $@
istgt.sh:$(rcfile):
         $(SED) -e 's:%%SYSCONFDIR%%:$(sysconfdir):g' \          $(SED) -e 's:%%SYSCONFDIR%%:$(sysconfdir):g' \
                 -e 's:%%CONFIGDIR%%:$(configdir):g' \                  -e 's:%%CONFIGDIR%%:$(configdir):g' \
                 -e 's:%%MEDIADIR%%:$(mediadir):g' \                  -e 's:%%MEDIADIR%%:$(mediadir):g' \
                -e 's:%%BINDIR%%:$(bindir):g' < istgt.sh.in > $@                -e 's:%%BINDIR%%:$(bindir):g' \
                 -e 's:%%SBINDIR%%:$(sbindir):g' < $(rctemplate) > $@
   
   .PHONY: dist clean distclean depend
 dist: $(DISTFILES)  dist: $(DISTFILES)
        mkdir $(DISTDIR)/$(subdir)        $(MKDIR_P) $(DISTDIR)/$(subdir)
         cd $(srcdir); thisdir=`pwd`; \          cd $(srcdir); thisdir=`pwd`; \
         for file in $(DISTFILES); do \          for file in $(DISTFILES); do \
          cp -p $$thisdir/$$file $(DISTDIR)/$(subdir); \            cp -p $$thisdir/$$file $(DISTDIR)/$(subdir); \
         done          done
   
 install: install-dirs  install: install-dirs
        install -c -m 0644 istgt.conf $(DESTDIR)$(sysconfdir)/istgt/istgt.conf.sample        $(INSTALL) -m 0644 istgt.conf $(DESTDIR)$(sysconfdir)/istgt/istgt.conf.sample
        install -c -m 0644 istgt.large.conf \        $(INSTALL) -m 0644 istgt.large.conf \
        $(DESTDIR)$(sysconfdir)/istgt/istgt.large.conf.sample                $(DESTDIR)$(sysconfdir)/istgt/istgt.large.conf.sample
        install -c -m 0600 auth.conf $(DESTDIR)$(sysconfdir)/istgt/auth.conf.sample        $(INSTALL) -m 0600 auth.conf $(DESTDIR)$(sysconfdir)/istgt/auth.conf.sample
        install -c -m 0600 istgtcontrol.conf \        $(INSTALL) -m 0600 istgtcontrol.conf \
        $(DESTDIR)$(sysconfdir)/istgt/istgtcontrol.conf.sample                $(DESTDIR)$(sysconfdir)/istgt/istgtcontrol.conf.sample
#       if [ ! -f $(sysconfdir)/rc.d/istgt ]; then \#       $(INSTALL) -m 0555 istgt.sh $(DESTDIR)$(sysconfdir)/rc.d/istgt
#         install -c -m 0555 istgt.sh $(DESTDIR)$(sysconfdir)/rc.d/istgt; \        if [ "x$(rcfile)" != "x" -a -f "$(rcfile)" ]; then \
#       fi            $(INSTALL) -m 0555 $(rcfile) $(DESTDIR)$(rcdir)/istgt; \
        install -c -m 0555 istgt.sh $(DESTDIR)$(sysconfdir)/rc.d/istgt        fi
   
 install-dirs:  install-dirs:
        mkdir -p $(DESTDIR)$(sysconfdir)/istgt        $(MKDIR_P) $(DESTDIR)$(sysconfdir)/istgt
        mkdir -p $(DESTDIR)$(sysconfdir)/rc.d        if [ -n "$(rcfile)" ] && [ -f "$(rcfile)" ]; then \
             if [ -n "$(DESTDIR)$(rcdir)" ] && [ ! -d "$(DESTDIR)$(rcdir)" ]; then \
                 $(MKDIR_P) $(DESTDIR)$(rcdir); \
             fi \
         fi
   
 clean:  clean:
        -rm -f istgt.large.conf istgt.conf istgt.sh        -rm -f istgt.large.conf istgt.conf $(rcfile)
         -rm -f a.out *.o *.core          -rm -f a.out *.o *.core
         -rm -f *~          -rm -f *~
   

Removed from v.1.1.1.1  
changed lines
  Added in v.1.1.1.2


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