Changeset a5c722b


Ignore:
Timestamp:
Jul 20, 2018, 9:59:20 PM (6 years ago)
Author:
Thierry Delisle <tdelisle@…>
Branches:
ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, deferred_resn, demangler, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, no_list, persistent-indexer, pthread-emulation, qualifiedEnum
Children:
982b0a5
Parents:
3a8cc12
Message:

Moved config.h.in to src

Files:
3 edited
1 moved

Legend:

Unmodified
Added
Removed
  • Makefile.in

    r3a8cc12 ra5c722b  
    170170AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \
    171171        cscope distdir dist dist-all distcheck
    172 am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) \
    173         $(LISP)config.h.in
     172am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
    174173# Read a list of newline-separated strings from the standard input,
    175174# and print each of them once, without duplicates.  Input order is
     
    192191CSCOPE = cscope
    193192DIST_SUBDIRS = $(SUBDIRS)
    194 am__DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/config.h.in \
    195         $(top_srcdir)/automake/compile \
     193am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/automake/compile \
    196194        $(top_srcdir)/automake/config.guess \
    197195        $(top_srcdir)/automake/config.sub \
    198196        $(top_srcdir)/automake/install-sh \
    199         $(top_srcdir)/automake/missing INSTALL README automake/compile \
    200         automake/config.guess automake/config.sub automake/depcomp \
    201         automake/install-sh automake/missing automake/ylwrap
     197        $(top_srcdir)/automake/missing $(top_srcdir)/src/config.h.in \
     198        INSTALL README automake/compile automake/config.guess \
     199        automake/config.sub automake/depcomp automake/install-sh \
     200        automake/missing automake/ylwrap
    202201DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
    203202distdir = $(PACKAGE)-$(VERSION)
     
    409408        @test -f $@ || $(MAKE) $(AM_MAKEFLAGS) stamp-h1
    410409
    411 stamp-h1: $(srcdir)/config.h.in $(top_builddir)/config.status
     410stamp-h1: $(top_srcdir)/src/config.h.in $(top_builddir)/config.status
    412411        @rm -f stamp-h1
    413412        cd $(top_builddir) && $(SHELL) ./config.status config.h
    414 $(srcdir)/config.h.in: @MAINTAINER_MODE_TRUE@ $(am__configure_deps)
     413$(top_srcdir)/src/config.h.in: @MAINTAINER_MODE_TRUE@ $(am__configure_deps)
    415414        ($(am__cd) $(top_srcdir) && $(AUTOHEADER))
    416415        rm -f stamp-h1
  • configure

    r3a8cc12 ra5c722b  
    24922492
    24932493#AC_CONFIG_SRCDIR([src/main.cc])
    2494 ac_config_headers="$ac_config_headers config.h"
     2494ac_config_headers="$ac_config_headers config.h:src/config.h.in"
    24952495
    24962496# Check whether --enable-silent-rules was given.
     
    70507050do
    70517051  case $ac_config_target in
    7052     "config.h") CONFIG_HEADERS="$CONFIG_HEADERS config.h" ;;
     7052    "config.h") CONFIG_HEADERS="$CONFIG_HEADERS config.h:src/config.h.in" ;;
    70537053    "depfiles") CONFIG_COMMANDS="$CONFIG_COMMANDS depfiles" ;;
    70547054    "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;;
  • configure.ac

    r3a8cc12 ra5c722b  
    66AC_CONFIG_AUX_DIR([automake])
    77#AC_CONFIG_SRCDIR([src/main.cc])
    8 AC_CONFIG_HEADERS([config.h])
     8AC_CONFIG_HEADERS([config.h:src/config.h.in])
    99AM_SILENT_RULES([no])
    1010
  • src/config.h.in

    r3a8cc12 ra5c722b  
    1 /* config.h.in.  Generated from configure.ac by autoheader.  */
     1/* src/config.h.in.  Generated from configure.ac by autoheader.  */
    22
    33/* Location of include files. */
Note: See TracChangeset for help on using the changeset viewer.