X-Git-Url: https://ncurses.scripts.mit.edu/?p=ncurses.git;a=blobdiff_plain;f=c%2B%2B%2FMakefile.in;h=4444aa6f94eda02f850cee68a7cf36d53a151412;hp=4f5b960457db616dfd8a95bb293bd54df0f5b2b5;hb=790a85dbd4a81d5f5d8dd02a44d84f01512ef443;hpb=02f02dcd4464143580e783ae32c822d8eb8cdcbf diff --git a/c++/Makefile.in b/c++/Makefile.in index 4f5b9604..4444aa6f 100644 --- a/c++/Makefile.in +++ b/c++/Makefile.in @@ -1,6 +1,7 @@ -# $Id: Makefile.in,v 1.111 2015/08/05 23:15:41 tom Exp $ +# $Id: Makefile.in,v 1.122 2020/03/08 16:13:11 tom Exp $ ############################################################################## -# Copyright (c) 1998-2014,2015 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"), # @@ -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@ @@ -112,7 +114,11 @@ LOCAL_LIBDIR = @top_builddir@/lib LINK = @LINK_PROGS@ $(LIBTOOL_LINK) @CXXLDFLAGS@ SHLIB_DIRS = -L../lib -SHLIB_LIST = $(SHLIB_DIRS) -lform@USE_LIB_SUFFIX@ -lmenu@USE_LIB_SUFFIX@ -lpanel@USE_LIB_SUFFIX@ -lncurses@USE_LIB_SUFFIX@ @SHLIB_LIST@ +SHLIB_LIST = $(SHLIB_DIRS) \ + -l@FORM_NAME@@USE_LIB_SUFFIX@ \ + -l@MENU_NAME@@USE_LIB_SUFFIX@ \ + -l@PANEL_NAME@@USE_LIB_SUFFIX@ \ + -lncurses@USE_LIB_SUFFIX@ @SHLIB_LIST@ LIBROOT = ncurses++ @@ -184,29 +190,35 @@ realclean :: distclean ############################################################################### -internal_h = $(srcdir)/internal.h \ - $(INCDIR)/ncurses_cfg.h \ - $(INCDIR)/nc_mingw.h \ - $(INCDIR)/nc_string.h - -etip_h = etip.h \ - $(INCDIR)/ncurses_dll.h +HEADER_DEPS = \ + etip.h \ + ../include/curses.h \ + ../include/eti.h \ + ../include/form.h \ + ../include/menu.h \ + ../include/ncurses_cfg.h \ + ../include/ncurses_def.h \ + ../include/ncurses_dll.h \ + ../include/panel.h \ + ../include/unctrl.h \ + $(INCDIR)/nc_mingw.h \ + $(INCDIR)/nc_string.h \ + $(srcdir)/cursesp.h \ + $(srcdir)/cursesw.h \ + $(srcdir)/cursslk.h \ + $(srcdir)/internal.h cursesw_h = $(srcdir)/cursesw.h \ - $(etip_h) \ - $(INCDIR)/curses.h + $(HEADER_DEPS) cursesp_h = $(srcdir)/cursesp.h \ - $(cursesw_h) \ - $(INCDIR)/panel.h + $(cursesw_h) cursesf_h = $(srcdir)/cursesf.h \ - $(cursesp_h) \ - $(INCDIR)/form.h + $(cursesp_h) cursesm_h = $(srcdir)/cursesm.h \ - $(cursesp_h) \ - $(INCDIR)/menu.h + $(cursesp_h) cursslk_h = $(srcdir)/cursslk.h \ $(cursesw_h) @@ -228,7 +240,7 @@ $(INCDIR)/panel.h : OBJS_DEMO = $(MODEL)/demo$o $(MODEL)/demo$o : $(srcdir)/demo.cc \ - $(internal_h) \ + $(HEADER_DEPS) \ $(cursesf_h) \ $(cursesm_h) \ $(cursesapp_h)