~vcs-imports/gawk/master

« back to all changes in this revision

Viewing changes to Makefile.in

  • Committer: Arnold D. Robbins
  • Date: 2016-12-22 15:22:49 UTC
  • mfrom: (731.1.11)
  • Revision ID: git-v1:1358693d2464c89a8d715fa6104ed36b48e45990
Merge branch 'master' into feature/fix-comments

Show diffs side-by-side

added added

removed removed

Lines of Context:
111
111
POST_UNINSTALL = :
112
112
build_triplet = @build@
113
113
host_triplet = @host@
 
114
 
 
115
# Build in extension before test so that
 
116
#       ./configure && make check
 
117
# works properly too.
114
118
@ENABLE_EXTENSIONS_TRUE@am__append_1 = extension
115
119
bin_PROGRAMS = gawk$(EXEEXT)
116
120
subdir = .
140
144
PROGRAMS = $(bin_PROGRAMS)
141
145
am__objects_1 = array.$(OBJEXT) awkgram.$(OBJEXT) builtin.$(OBJEXT) \
142
146
        cint_array.$(OBJEXT) command.$(OBJEXT) debug.$(OBJEXT) \
143
 
        dfa.$(OBJEXT) eval.$(OBJEXT) ext.$(OBJEXT) field.$(OBJEXT) \
 
147
        eval.$(OBJEXT) ext.$(OBJEXT) field.$(OBJEXT) \
144
148
        floatcomp.$(OBJEXT) gawkapi.$(OBJEXT) gawkmisc.$(OBJEXT) \
145
 
        getopt.$(OBJEXT) getopt1.$(OBJEXT) int_array.$(OBJEXT) \
146
 
        localeinfo.$(OBJEXT) io.$(OBJEXT) main.$(OBJEXT) \
147
 
        mpfr.$(OBJEXT) msg.$(OBJEXT) node.$(OBJEXT) profile.$(OBJEXT) \
148
 
        random.$(OBJEXT) re.$(OBJEXT) regex.$(OBJEXT) \
 
149
        int_array.$(OBJEXT) io.$(OBJEXT) main.$(OBJEXT) mpfr.$(OBJEXT) \
 
150
        msg.$(OBJEXT) node.$(OBJEXT) profile.$(OBJEXT) re.$(OBJEXT) \
149
151
        replace.$(OBJEXT) str_array.$(OBJEXT) symbol.$(OBJEXT) \
150
152
        version.$(OBJEXT)
151
153
am_gawk_OBJECTS = $(am__objects_1)
152
154
gawk_OBJECTS = $(am_gawk_OBJECTS)
153
155
gawk_LDADD = $(LDADD)
154
156
am__DEPENDENCIES_1 =
155
 
gawk_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \
 
157
gawk_DEPENDENCIES = support/libsupport.a $(am__DEPENDENCIES_1) \
156
158
        $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \
157
 
        $(am__DEPENDENCIES_1)
 
159
        $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1)
158
160
AM_V_P = $(am__v_P_@AM_V@)
159
161
am__v_P_ = $(am__v_P_@AM_DEFAULT_V@)
160
162
am__v_P_0 = false
263
265
ETAGS = etags
264
266
CTAGS = ctags
265
267
CSCOPE = cscope
266
 
DIST_SUBDIRS = . extension extras doc awklib po test
 
268
DIST_SUBDIRS = support . extension extras doc awklib po test
267
269
am__DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/configh.in ABOUT-NLS \
268
270
        AUTHORS COPYING ChangeLog INSTALL NEWS README TODO awkgram.c \
269
271
        command.c compile config.guess config.rpath config.sub depcomp \
326
328
CPP = @CPP@
327
329
CPPFLAGS = @CPPFLAGS@
328
330
CYGPATH_W = @CYGPATH_W@
329
 
DEFS = -DDEFPATH=$(DEFPATH) -DDEFLIBPATH=$(DEFLIBPATH) -DSHLIBEXT=$(SHLIBEXT) -DHAVE_CONFIG_H -DGAWK -DLOCALEDIR='"$(datadir)/locale"'
 
331
DEFS = -DDEFPATH=$(DEFPATH) -DDEFLIBPATH=$(DEFLIBPATH) -DSHLIBEXT=$(SHLIBEXT) -DHAVE_CONFIG_H -DGAWK -DLOCALEDIR='"$(datadir)/locale"' -I"$(srcdir)/support"
330
332
DEPDIR = @DEPDIR@
331
333
ECHO_C = @ECHO_C@
332
334
ECHO_N = @ECHO_N@
375
377
PACKAGE_VERSION = @PACKAGE_VERSION@
376
378
PATH_SEPARATOR = @PATH_SEPARATOR@
377
379
POSUB = @POSUB@
 
380
RANLIB = @RANLIB@
378
381
SED = @SED@
379
382
SET_MAKE = @SET_MAKE@
380
383
SHELL = @SHELL@
469
472
        po/README \
470
473
        pc \
471
474
        posix \
472
 
        regcomp.c \
473
 
        regex_internal.c \
474
 
        regex_internal.h \
475
 
        regexec.c \
476
475
        vms \
477
476
        ylwrap
478
477
 
479
478
 
480
479
# The order to do things in.
481
480
#
 
481
# Build in support first, since we need the support library.
 
482
#
482
483
# Build explicitly in "." in order to build gawk first, so
483
484
# that `make check' without a prior `make' works.
484
 
#
485
 
# Build in extension before test so that
486
 
#       ./configure && make check
487
 
# works properly too.
488
 
#
 
485
 
489
486
# Build in awklib after in doc, since we want to extract
490
487
# sample files if doc/gawk.texi changed.
491
 
SUBDIRS = . $(am__append_1) extras doc awklib po test
 
488
SUBDIRS = support . $(am__append_1) extras doc awklib po test
492
489
include_HEADERS = gawkapi.h
493
490
 
494
491
# sources for both gawk and dgawk
502
499
        command.y \
503
500
        custom.h \
504
501
        debug.c \
505
 
        dfa.c \
506
 
        dfa.h \
507
502
        eval.c \
508
503
        ext.c \
509
504
        field.c \
512
507
        gawkapi.c \
513
508
        gawkapi.h \
514
509
        gawkmisc.c \
515
 
        getopt.c \
516
 
        getopt.h \
517
 
        getopt1.c \
518
 
        getopt_int.h \
519
510
        gettext.h \
520
511
        int_array.c \
521
512
        interpret.h \
522
 
        localeinfo.c \
523
 
        localeinfo.h \
524
513
        io.c \
525
514
        mbsupport.h \
526
515
        main.c \
530
519
        nonposix.h \
531
520
        profile.c \
532
521
        protos.h \
533
 
        random.c \
534
 
        random.h \
535
522
        re.c \
536
 
        regex.c \
537
 
        regex.h \
538
523
        replace.c \
539
524
        str_array.c \
540
525
        symbol.c \
541
 
        verify.h \
542
 
        version.c \
543
 
        xalloc.h
 
526
        version.c
544
527
 
545
528
gawk_SOURCES = $(base_sources)
546
529
 
547
530
# Get extra libs as needed, Automake will supply LIBINTL and SOCKET_LIBS.
548
 
LDADD = $(LIBSIGSEGV) $(LIBINTL) $(SOCKET_LIBS) $(LIBREADLINE) $(LIBMPFR)
 
531
LDADD = support/libsupport.a \
 
532
        $(LIBSIGSEGV) $(LIBINTL) $(SOCKET_LIBS) $(LIBREADLINE) $(LIBMPFR)
 
533
 
549
534
 
550
535
# stuff for compiling gawk/pgawk
551
536
DEFPATH = '".$(PATH_SEPARATOR)$(pkgdatadir)"'
674
659
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cint_array.Po@am__quote@
675
660
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/command.Po@am__quote@
676
661
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/debug.Po@am__quote@
677
 
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/dfa.Po@am__quote@
678
662
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eval.Po@am__quote@
679
663
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ext.Po@am__quote@
680
664
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/field.Po@am__quote@
681
665
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/floatcomp.Po@am__quote@
682
666
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gawkapi.Po@am__quote@
683
667
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gawkmisc.Po@am__quote@
684
 
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/getopt.Po@am__quote@
685
 
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/getopt1.Po@am__quote@
686
668
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/int_array.Po@am__quote@
687
669
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/io.Po@am__quote@
688
 
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/localeinfo.Po@am__quote@
689
670
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/main.Po@am__quote@
690
671
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mpfr.Po@am__quote@
691
672
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/msg.Po@am__quote@
692
673
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/node.Po@am__quote@
693
674
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/profile.Po@am__quote@
694
 
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/random.Po@am__quote@
695
675
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/re.Po@am__quote@
696
 
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/regex.Po@am__quote@
697
676
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/replace.Po@am__quote@
698
677
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/str_array.Po@am__quote@
699
678
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/symbol.Po@am__quote@