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

File: [Platon] / ep / Makefile.in (download)

Revision 1.9, Wed Feb 20 20:16:39 2002 UTC (22 years, 1 month ago) by host8

Changes since 1.8: +12 -6 lines

Added ./configure --enable-menu
Not fully tested.

#
# Author: rajo <host8@kepler.fmph.uniba.sk>
#
# Copyright (c) rajo
#

# $Id: Makefile.in,v 1.9 2002/02/20 20:16:39 host8 Exp $

PACKAGE = @PACKAGE@
VERSION = @VERSION@

# Directories {{{
srcdir = @srcdir@
top_srcdir = @top_srcdir@
VPATH = @srcdir@
prefix = @prefix@
exec_prefix = @exec_prefix@

bindir = @bindir@
sbindir = @sbindir@
libexecdir = @libexecdir@
sysconfdir = @sysconfdir@
sharedstatedir = @sharedstatedir@
localstatedir = @localstatedir@
libdir = @libdir@
infodir = @infodir@
mandir = @mandir@
man1dir = $(mandir)/man1

DESTDIR =

top_builddir = .
datadir = $(prefix)/@DATADIRNAME@

distdir = $(PACKAGE)-$(VERSION)
top_distdir = $(distdir)

SUBDIRS = src

# }}} Directories

# Programs {{{
SHELL = @SHELL@
INSTALL         = @INSTALL@
INSTALL_PROGRAM = @INSTALL_PROGRAM@
INSTALL_SCRIPT  = @INSTALL_SCRIPT@
INSTALL_DATA    = @INSTALL_DATA@
transform       = @program_transform_name@

AWK  = @AWK@
CC   = @CC@
LN_S = @LN_S@
TAR  = tar
GZIP_ENV = --best
STRIP = strip
DEPEND = makedepend 
 
mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs

# }}} Programs


CONFIG_HEADER = config.h
# DISTFILES {{{
DISTFILES = AUTHORS BUGS COPYING INSTALL README TODO \
             configure Makefile.in config.h.in \
             install-sh mkinstalldirs \
             src \
                src/Makefile.in \
                 src/cfg.c         src/cfg.h \
                 src/cfglocal.c    src/cfglocal.h \
                 src/fd.c          src/fd.h \
                 src/m_memory.c    src/m_memory.h \
                 src/m_proctable.c src/m_proctable.h \
                 src/main.c        src/main.h \
                 src/menu.c        src/menu.h \
                 src/message.c     src/message.h \
                 src/process.c     src/process.h \
                 src/proctable.c   src/proctable.h \
                 src/sigserv.c     src/sigserv.h \
                                   src/proclink.h \
                src/cfg \
                    src/cfg/Makefile  src/cfg/TODO \
                    src/cfg/cfg.c     src/cfg/cfg.h \
                    src/cfg/cfgfile.c src/cfg/cfgfile.h \
                    src/cfg/cmdline.c src/cfg/cmdline.h \
                    src/cfg/props.c   src/cfg/props.h \
                    src/cfg/shared.c  src/cfg/shared.h \
                    src/cfg/parse.c \
                    src/cfg/str \
                        src/cfg/str/Makefile \
                        src/cfg/str/charsets.c src/cfg/str/charsets.h \
                        src/cfg/str/dynfgets.c src/cfg/str/dynfgets.h \
                        src/cfg/str/strconv.c  src/cfg/str/strconv.h \
                        src/cfg/str/strctype.c src/cfg/str/strctype.h \
                        src/cfg/str/strdyn.c   src/cfg/str/strdyn.h \
                        src/cfg/str/strplus.c  src/cfg/str/strplus.h
# }}} DISTFILES


all: all-subdirs config.h

all-subdirs: $(CONFIG_HEADER)
    for dir in $(SUBDIRS); \
    do \
        cd $$dir && $(MAKE) ; \
    done

Makefile: $(srcdir)/Makefile.in  $(top_builddir)/config.status $(BUILT_SOURCES)
    cd $(top_builddir) \
      && CONFIG_FILES=$@ CONFIG_HEADERS= \
        $(SHELL) ./config.status
config.status: $(srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
    cd $(top_builddir) \
      && $(SHELL) ./config.status --recheck
config.h: config.h.in
    cd $(top_builddir) \
      && CONFIG_FILES= CONFIG_HEADERS=config.h \
         $(SHELL) ./config.status


# Clean {{{

clean: clean-subdirs

clean-subdirs:
    for dir in $(SUBDIRS); \
    do \
        cd $$dir && $(MAKE) clean; \
    done

clean-maintainer:
    rm -f config.h config.status config.cache config.log \
        Makefile core conftest* *.core src/Makefile src/ep src/*.o

# }}} Clean

# Distribution {{{

# This target untars the dist file and tries a VPATH configuration.  Then
# it guarantees that the distribution is self-contained by making another
# tarfile.
distcheck: dist
    -rm -rf $(distdir)
    GZIP=$(GZIP_ENV) $(TAR) xzf $(distdir).tar.gz
    mkdir $(distdir)/=build
    mkdir $(distdir)/=inst
    dc_install_base=`cd $(distdir)/=inst && pwd`; \
    cd $(distdir)/=build \
      && ../configure --srcdir=.. --prefix=$$dc_install_base \
      && $(MAKE) \
      && $(MAKE) install \
      && $(MAKE) installcheck \
      && $(MAKE) dist
    -rm -rf $(distdir)
    @banner="$(distdir).tar.gz is ready for distribution"; \
    dashes=`echo "$$banner" | sed s/./=/g`; \
    echo "$$dashes"; \
    echo "$$banner"; \
    echo "$$dashes"

dist: distdir
    -chmod -R a+r $(distdir)
    GZIP=$(GZIP_ENV) $(TAR) chozf $(distdir).tar.gz $(distdir)
    -rm -rf $(distdir)
    
dist-all: distdir
    -chmod -R a+r $(distdir)
    GZIP=$(GZIP_ENV) $(TAR) chozf $(distdir).tar.gz $(distdir)
    -rm -rf $(distdir)

distdir: $(DISTFILES)
    -rm -rf $(distdir)
    mkdir $(distdir)
    -chmod 755 $(distdir)
    here=`cd $(top_builddir) && pwd`; \
    top_distdir=`cd $(distdir) && pwd`; \
    distdir=`cd $(distdir) && pwd`;
    @for file in $(DISTFILES); do \
      d=$(srcdir); \
      if test -d $$d/$$file; then \
        mkdir $(distdir)/$$file; \
      else \
        test -f $(distdir)/$$file \
        || cp -p $$d/$$file $(distdir)/$$file || :; \
      fi; \
    done

# }}} Distribution

# Install {{{

install: install-bin install-man

install-bin:

install-man:

installcheck:

# }}} Install

# Tell versions [3.59,3.63) of GNU make to not export all variables.
# Otherwise a system limit (for SysV at least) may be exceeded.
.NOEXPORT:

#    vim:set ts=4:
# vim600:fdm=marker fdl=0 fdc=3:

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