]> ncurses.scripts.mit.edu Git - ncurses.git/blobdiff - c++/Makefile.in
ncurses 6.2 - patch 20200212
[ncurses.git] / c++ / Makefile.in
index eb44da753619616d420d4b071fe5191d3086b1c7..9b22b6ac16ae321af6518ba6a54e51d2087aa4b1 100644 (file)
@@ -1,6 +1,7 @@
-# $Id: Makefile.in,v 1.110 2015/05/01 00:47:26 tom Exp $
+# $Id: Makefile.in,v 1.119 2020/02/02 23:34:34 tom Exp $
 ##############################################################################
-# Copyright (c) 1998-2013,2014 Free Software Foundation, Inc.                #
+# Copyright 2018,2020 Thomas E. Dickey                                       #
+# Copyright 1998-2015,2016 Free Software Foundation, Inc.                    #
 #                                                                            #
 # Permission is hereby granted, free of charge, to any person obtaining a    #
 # copy of this software and associated documentation files (the "Software"), #
@@ -34,7 +35,7 @@
 # turn off _all_ suffix rules; we'll generate our own
 .SUFFIXES:
 
-SHELL          = /bin/sh
+SHELL          = @SHELL@
 VPATH          = @srcdir@
 
 CF_MFLAGS      = @cf_cv_makeflags@
@@ -58,7 +59,7 @@ INCLUDEDIR    = $(DESTDIR)$(includedir)$(includesubdir)
 PACKAGE                = @PACKAGE@
 
 LIBTOOL                = @LIBTOOL_CXX@
-LIBTOOL_OPTS   = @LIBTOOL_OPTS@
+LIBTOOL_OPTS   = @LIBTOOL_OPTS@ @LIBTOOL_OPTS_CXX@
 LIBTOOL_CLEAN  = @LIB_CLEAN@
 LIBTOOL_COMPILE        = @LIB_COMPILE@
 LIBTOOL_LINK   = @LIB_LINK@
@@ -67,9 +68,10 @@ LIBTOOL_UNINSTALL = @LIB_UNINSTALL@
 LIBTOOL_VERSION = @LIBTOOL_VERSION@
 LT_UNDEF       = @LT_UNDEF@
 
-INSTALL                = @INSTALL@
-INSTALL_LIB    = @INSTALL@ @INSTALL_LIB@
+INSTALL                = @INSTALL@ 
+INSTALL_LIB    = $(INSTALL) @INSTALL_LIB@
 INSTALL_DATA   = @INSTALL_DATA@
+INSTALL_OPT_P  = @INSTALL_OPT_P@
 
 AR             = @AR@
 ARFLAGS                = @ARFLAGS@
@@ -87,7 +89,7 @@ CXXFLAGS      = @CXXFLAGS@ @EXTRA_CXXFLAGS@
 CXXLIBS                = @CXXLIBS@
 
 INCDIR         = ../include
-CPPFLAGS       = -DHAVE_CONFIG_H @CPPFLAGS@
+CPPFLAGS       = -DHAVE_CONFIG_H -I../c++ @CPPFLAGS@
 
 CTAGS          = @CTAGS@
 ETAGS          = @ETAGS@
@@ -172,7 +174,7 @@ mostlyclean ::
        -rm -f core tags TAGS *~ *.bak *.i *.ii *.ln *.atac trace
 
 clean :: mostlyclean
-       -sh -c "if test -n '$x' ; then $(MAKE) clean x=''; fi"
+       -$(SHELL) -c "if test -n '$x' ; then $(MAKE) clean x=''; fi"
        -rm -rf $(MODEL)/SunWS_cache
        -$(LIBTOOL_CLEAN) rm -f demo$x $(AUTO_SRC) $(LIBRARIES) $(OBJS_DEMO)
        -rm -rf .libs *.dSYM
@@ -242,7 +244,7 @@ demo$x:     $(OBJS_DEMO) \
 
 etip.h:        $(srcdir)/etip.h.in $(srcdir)/edit_cfg.sh
        cp $(srcdir)/etip.h.in $@
-       sh $(srcdir)/edit_cfg.sh ../include/ncurses_cfg.h $@
+       $(SHELL) $(srcdir)/edit_cfg.sh ../include/ncurses_cfg.h $@
 
 ###############################################################################
 # The remainder of this file is automatically generated during configuration