Platon Technologies
not logged in Login Registration
EnglishSlovak
open source software development celebrating 10 years of open source development! Friday, March 29, 2024

Diff for libplaton/Makefile.in between version 1.3 and 1.8

version 1.3, 2001/10/17 15:26:12 version 1.8, 2002/07/01 21:38:04
Line 1 
Line 1 
 # Makefile.in generated automatically by automake 1.4 from Makefile.am;  # --------------------------------------------------------------------- #
 #                                                          modified !  # AK CHCES PRIDAT NOVY SUBOR DO KNIZNICE, TAK TOTO JE NESPRAVNE MIESTO. #
 #                                                          (by rajo)  # POZRI RADSEJ SUBOR ./configure V TOMTO ADRESARI.                      #
   # --------------------------------------------------------------------- #
   
 #  #
 # Author: rajo <host8@kepler.fmph.uniba.sk>  # Author: rajo <host8@kepler.fmph.uniba.sk>
Line 11 
Line 12 
 # $Id$  # $Id$
   
 PACKAGE = libplaton  PACKAGE = libplaton
 VERSION = 1.0  VERSION = 0.1
   
 # Directories {{{  # Directories {{{
 srcdir = @srcdir@  srcdir = @srcdir@
Line 64  LINK = $(CCLD) $(CFLAGS) $(LDFLAGS) -o $
Line 65  LINK = $(CCLD) $(CFLAGS) $(LDFLAGS) -o $
 SHELL = @SHELL@  SHELL = @SHELL@
 LN_S = @LN_S@  LN_S = @LN_S@
 STRIP = @STRIP@  STRIP = @STRIP@
 TAR = gtar  TAR = tar
 NROFF = nroff  NROFF = nroff
 MAKE  = make  MAKE  = make
 INSTALL = @INSTALL@  INSTALL = @INSTALL@
Line 82  mkinstalldirs = $(SHELL) $(top_srcdir)/m
Line 83  mkinstalldirs = $(SHELL) $(top_srcdir)/m
 # }}} Programs  # }}} Programs
   
 # Target names, objects {{{  # Target names, objects {{{
 BUILD_DIRS = @BUILD_DIRS@  libplaton_DIRS = @libplaton_DIRS@
 libplaton_SOURCES = @libplaton_SOURCES@  libplaton_SOURCES = @libplaton_SOURCES@
   libplaton_HEADERS = @libplaton_HEADERS@
 libplaton_OBJECTS = @libplaton_OBJECTS@  libplaton_OBJECTS = @libplaton_OBJECTS@
   
 libplaton_SOURCES_html = @libplaton_SOURCES_html@  libplaton_SOURCES_html = @libplaton_SOURCES_html@
   libplaton_HEADERS_html = @libplaton_HEADERS_html@
 libplaton_OBJECTS_html = @libplaton_OBJECTS_html@  libplaton_OBJECTS_html = @libplaton_OBJECTS_html@
   
 libplaton_SOURCES_str = @libplaton_SOURCES_str@  libplaton_SOURCES_str = @libplaton_SOURCES_str@
   libplaton_HEADERS_str = @libplaton_HEADERS_str@
 libplaton_OBJECTS_str = @libplaton_OBJECTS_str@  libplaton_OBJECTS_str = @libplaton_OBJECTS_str@
   
 libplaton_SOURCES_telnet = @libplaton_SOURCES_telnet@  libplaton_SOURCES_telnet = @libplaton_SOURCES_telnet@
   libplaton_HEADERS_telnet = @libplaton_HEADERS_telnet@
 libplaton_OBJECTS_telnet = @libplaton_OBJECTS_telnet@  libplaton_OBJECTS_telnet = @libplaton_OBJECTS_telnet@
   
 libplaton_SOURCES_utils = @libplaton_SOURCES_utils@  libplaton_SOURCES_utils = @libplaton_SOURCES_utils@
   libplaton_HEADERS_utils = @libplaton_HEADERS_utils@
 libplaton_OBJECTS_utils = @libplaton_OBJECTS_utils@  libplaton_OBJECTS_utils = @libplaton_OBJECTS_utils@
   
 libplaton_LIB = libplaton  libplaton_LIB = libplaton
Line 105  libplaton_telnet_LIB = libplaton_telnet
Line 111  libplaton_telnet_LIB = libplaton_telnet
 libplaton_utils_LIB  = libplaton_utils  libplaton_utils_LIB  = libplaton_utils
   
 SOURCES = $(libplaton_SOURCES)  SOURCES = $(libplaton_SOURCES)
   HEADERS = $(libplaton_HEADERS)
 OBJECTS = $(libplaton_OBJECTS)  OBJECTS = $(libplaton_OBJECTS)
 libplaton_STATIC_LIB = $(libplaton_LIB).a  libplaton_STATIC_LIB = $(libplaton_LIB).a
 libplaton_DYNAMIC_LIB = $(libplaton_LIB).so  libplaton_DYNAMIC_LIB = $(libplaton_LIB).so
 libplaton_DYNAMICV_LIB = $(libplaton_LIB)-$(VERSION).so  libplaton_DYNAMICV_LIB = $(libplaton_LIB)-$(VERSION).so
   
 EXTRA_DIST = AUTHORS BUGS COPYING CREDITS ChangeLog INSTALL README SITES TODO *.h  EXTRA_DIST  = TODO
 DIST_COMMON =  README AUTHORS COPYING ChangeLog INSTALL \  DIST_COMMON = macros.h README AUTHORS COPYING \
 Makefile.in TODO configure install-sh mkinstalldirs                configure install-sh mkinstalldirs \
 DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) $(TEXINFOS) $(EXTRA_DIST)                Makefile.in html/Makefile str/Makefile \
                 telnet/Makefile utils/Makefile
   DISTFILES = $(libplaton_DIRS) $(SOURCES) $(HEADERS) \
                           $(DIST_COMMON) $(TEXINFOS) $(EXTRA_DIST)
 # }}} Target names, objects  # }}} Target names, objects
   
   
 all: all-subdirs static dynamic  all: all-subdirs static dynamic
   
 all-subdirs:  all-subdirs:
         for i in $(BUILD_DIRS) ; do \          for i in $(libplaton_DIRS) ; do \
                 cd $$i && $(MAKE) ; \                  back=`pwd`; \
                 cd .. ; \                  cd $(srcdir)/$$i && $(MAKE) && cd $$back ; \
         done          done
   
 static: $(libplaton_STATIC_LIB)  static: $(libplaton_STATIC_LIB)
Line 130  static: $(libplaton_STATIC_LIB)
Line 140  static: $(libplaton_STATIC_LIB)
 dynamic: $(libplaton_DYNAMIC_LIB)  dynamic: $(libplaton_DYNAMIC_LIB)
   
 $(libplaton_STATIC_LIB):        $(OBJECTS)  $(libplaton_STATIC_LIB):        $(OBJECTS)
         $(AR) r $@ $(OBJECTS)          cd $(srcdir) && $(AR) r $@ $(OBJECTS)
   
 $(libplaton_DYNAMIC_LIB):       $(OBJECTS)  $(libplaton_DYNAMIC_LIB):       $(OBJECTS)
         $(LD) $(LDFLAGS) -shared -o $@ $(OBJECTS)          cd $(srcdir) && $(LD) $(LDFLAGS) -shared -o $@ $(OBJECTS)
   
 Makefile: $(srcdir)/Makefile.in  $(top_builddir)/config.status $(BUILT_SOURCES)  Makefile: $(srcdir)/Makefile.in  $(top_builddir)/config.status $(BUILT_SOURCES)
         cd $(top_builddir) \          cd $(top_builddir) \
Line 152  clean: clean-subdirs
Line 162  clean: clean-subdirs
         rm -f $(libplaton_STATIC_LIB) $(libplaton_DYNAMIC_LIB) $(libplaton_DYNAMICV_LIB) core          rm -f $(libplaton_STATIC_LIB) $(libplaton_DYNAMIC_LIB) $(libplaton_DYNAMICV_LIB) core
   
 clean-subdirs:  clean-subdirs:
         for i in $(BUILD_DIRS) ; do \          for i in $(libplaton_DIRS) ; do \
                 cd $$i && $(MAKE) clean ; \                  back=`pwd`; \
                 cd .. ; \                  cd $(srcdir)/$$i && $(MAKE) clean && cd $$back ; \
         done          done
   
 # ID & tags {{{  # ID & tags {{{
Line 194  distcheck: dist
Line 204  distcheck: dist
         cd $(distdir)/=build \          cd $(distdir)/=build \
           && ../configure --srcdir=.. --prefix=$$dc_install_base \            && ../configure --srcdir=.. --prefix=$$dc_install_base \
           && $(MAKE) $(AM_MAKEFLAGS) \            && $(MAKE) $(AM_MAKEFLAGS) \
           && $(MAKE) $(AM_MAKEFLAGS) dvi \  #         && $(MAKE) $(AM_MAKEFLAGS) check \
           && $(MAKE) $(AM_MAKEFLAGS) check \  #         && $(MAKE) $(AM_MAKEFLAGS) install \
           && $(MAKE) $(AM_MAKEFLAGS) install \  #         && $(MAKE) $(AM_MAKEFLAGS) installcheck \
           && $(MAKE) $(AM_MAKEFLAGS) installcheck \  
           && $(MAKE) $(AM_MAKEFLAGS) dist            && $(MAKE) $(AM_MAKEFLAGS) dist
         -rm -rf $(distdir)          -rm -rf $(distdir)
         @banner="$(distdir).tar.gz is ready for distribution"; \          @banner="$(distdir).tar.gz is ready for distribution"; \
Line 223  distdir: $(DISTFILES)
Line 232  distdir: $(DISTFILES)
         @for file in $(DISTFILES); do \          @for file in $(DISTFILES); do \
           d=$(srcdir); \            d=$(srcdir); \
           if test -d $$d/$$file; then \            if test -d $$d/$$file; then \
             cp -pr $$d/$$file $(distdir)/$$file; \              $(mkinstalldirs) $(distdir)/$$file; \
           else \            else \
             test -f $(distdir)/$$file \              test -f $(distdir)/$$file \
             || ln $$d/$$file $(distdir)/$$file 2> /dev/null \              || ln $$d/$$file $(distdir)/$$file 2> /dev/null \
Line 235  distdir: $(DISTFILES)
Line 244  distdir: $(DISTFILES)
 # Libs: {{{  # Libs: {{{
   
 $(libplaton_LIB):  $(libplaton_LIB):
         LIBOBJS=`find $(BUILD_DIRS) -name \*.o -print`; \          LIBOBJS=`find $(libplaton_DIRS) -name \*.o -print`; \
                 $(AR) $@  $$LIBOBJS                  cd $(srcdir) && $(AR) $@  $$LIBOBJS
         $(RANLIB) $@          $(RANLIB) $@
   
 # }}} Libs:  # }}} Libs:

Legend:
Removed from v.1.3  
changed lines
  Added in v.1.8

Platon Group <platon@platon.org> http://platon.org/
Copyright © 2002-2006 Platon Group
Site powered by Metafox CMS
Go to Top