1# $Id: Makefile.in,v 1.71 2021/07/03 15:45:33 tom Exp $ 2############################################################################## 3# Copyright 2020,2021 Thomas E. Dickey # 4# Copyright 1998-2015,2018 Free Software Foundation, Inc. # 5# # 6# Permission is hereby granted, free of charge, to any person obtaining a # 7# copy of this software and associated documentation files (the "Software"), # 8# to deal in the Software without restriction, including without limitation # 9# the rights to use, copy, modify, merge, publish, distribute, distribute # 10# with modifications, sublicense, and/or sell copies of the Software, and to # 11# permit persons to whom the Software is furnished to do so, subject to the # 12# following conditions: # 13# # 14# The above copyright notice and this permission notice shall be included in # 15# all copies or substantial portions of the Software. # 16# # 17# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # 18# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # 19# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL # 20# THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # 21# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING # 22# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER # 23# DEALINGS IN THE SOFTWARE. # 24# # 25# Except as contained in this notice, the name(s) of the above copyright # 26# holders shall not be used in advertising or otherwise to promote the sale, # 27# use or other dealings in this Software without prior written # 28# authorization. # 29############################################################################## 30# 31# Author: Thomas E. Dickey 1996-on 32# 33# Makefile for menu source code. 34# 35# This makes the following: 36# libraries (normal/debug/profile/shared) 37# 38# The variable 'srcdir' refers to the source-distribution, and can be set with 39# the configure script by "--srcdir=DIR". 40# 41# The rules are organized to produce the libraries for the configured models, 42 43# turn off _all_ suffix rules; we'll generate our own 44.SUFFIXES: 45 46SHELL = @SHELL@ 47VPATH = @srcdir@ 48THIS = Makefile 49 50x = @EXEEXT@ 51o = .@OBJEXT@ 52 53MODEL = @DFT_LWR_MODEL@ 54DESTDIR = @DESTDIR@ 55top_srcdir = @top_srcdir@ 56srcdir = @srcdir@ 57prefix = @prefix@ 58exec_prefix = @exec_prefix@ 59bindir = @bindir@ 60libdir = @libdir@ 61includedir = @includedir@ 62includesubdir = @includesubdir@ 63 64INCLUDEDIR = $(DESTDIR)$(includedir)$(includesubdir) 65 66PACKAGE = @PACKAGE@ 67 68LIBTOOL = @LIBTOOL@ 69LIBTOOL_OPTS = @LIBTOOL_OPTS@ @EXPORT_SYMS@ 70LIBTOOL_CLEAN = @LIB_CLEAN@ 71LIBTOOL_COMPILE = @LIB_COMPILE@ 72LIBTOOL_LINK = @LIB_LINK@ 73LIBTOOL_INSTALL = @LIB_INSTALL@ 74LIBTOOL_UNINSTALL = @LIB_UNINSTALL@ 75LT_UNDEF = @LT_UNDEF@ 76 77INSTALL = @INSTALL@ 78INSTALL_LIB = @INSTALL@ @INSTALL_LIB@ 79INSTALL_PROG = @INSTALL_PROGRAM@ @INSTALL_OPT_S@ 80INSTALL_DATA = @INSTALL_DATA@ 81 82AR = @AR@ 83ARFLAGS = @ARFLAGS@ 84AWK = @AWK@ 85LD = @LD@ 86LN_S = @LN_S@ 87 88CTAGS = @CTAGS@ 89ETAGS = @ETAGS@ 90 91CC = @CC@ 92CPP = @CPP@ 93CFLAGS = @CFLAGS@ @EXTRA_CFLAGS@ 94 95INCDIR = $(top_srcdir)/include 96BASE_DIR = $(top_srcdir)/ncurses 97CPPFLAGS = -I$(BASE_DIR) -DHAVE_CONFIG_H -DBUILDING_MENU @CPPFLAGS@ 98 99CCFLAGS = $(CPPFLAGS) $(CFLAGS) 100 101CFLAGS_LIBTOOL = $(CCFLAGS) 102CFLAGS_NORMAL = $(CCFLAGS) -DNCURSES_STATIC 103CFLAGS_DEBUG = $(CCFLAGS) -DNCURSES_STATIC @CC_G_OPT@ -DTRACE 104CFLAGS_PROFILE = $(CCFLAGS) -DNCURSES_STATIC -pg 105CFLAGS_SHARED = $(CCFLAGS) @CC_SHARED_OPTS@ 106 107CFLAGS_DEFAULT = $(CFLAGS_@DFT_UPR_MODEL@) 108 109LINK = $(LIBTOOL_LINK) 110LDFLAGS = @LDFLAGS@ @LD_MODEL@ @LIBS@ 111 112SHLIB_DIRS = -L../lib 113SHLIB_LIST = $(SHLIB_DIRS) -lncurses@USE_LIB_SUFFIX@ @SHLIB_LIST@ 114 115RPATH_LIST = @RPATH_LIST@ 116RESULTING_SYMS = @RESULTING_SYMS@ 117VERSIONED_SYMS = @VERSIONED_SYMS@ 118MK_SHARED_LIB = @MK_SHARED_LIB@ 119 120NCURSES_MAJOR = @NCURSES_MAJOR@ 121NCURSES_MINOR = @NCURSES_MINOR@ 122REL_VERSION = @cf_cv_rel_version@ 123ABI_VERSION = @cf_cv_abi_version@ 124 125RANLIB = @LIB_PREP@ 126 127LIBRARIES = @Libs_To_Make@ 128 129LINT = @LINT@ 130LINT_OPTS = @LINT_OPTS@ 131LINT_LIBS = -lmenu -lncurses @LIBS@ 132 133AUTO_SRC = \ 134 ../include/menu.h \ 135 ../include/eti.h \ 136 ../include/mf_common.h 137 138################################################################################ 139 140@MAKE_PHONY@.PHONY : all 141@MAKE_PHONY@.PHONY : clean 142@MAKE_PHONY@.PHONY : distclean 143@MAKE_PHONY@.PHONY : install 144@MAKE_PHONY@.PHONY : install.libs 145@MAKE_PHONY@.PHONY : libs 146@MAKE_PHONY@.PHONY : mostlyclean 147@MAKE_PHONY@.PHONY : realclean 148@MAKE_PHONY@.PHONY : sources 149@MAKE_PHONY@.PHONY : uninstall 150@MAKE_PHONY@.PHONY : uninstall.libs 151 152all \ 153libs \ 154install :: $(AUTO_SRC) $(LIBRARIES) 155 156sources : $(AUTO_SRC) 157 158$(DESTDIR)$(bindir) \ 159$(DESTDIR)$(libdir) : 160 mkdir -p $@ 161 162# make copies to simplify include-paths while still keeping menu's include 163# file in this directory. 164../include/menu.h : $(srcdir)/menu.h 165 -rm -f $@ 166 cp $(srcdir)/menu.h $@ 167../include/eti.h : $(srcdir)/eti.h 168 -rm -f $@ 169 cp $(srcdir)/eti.h $@ 170../include/mf_common.h : $(srcdir)/mf_common.h 171 -rm -f $@ 172 cp $(srcdir)/mf_common.h $@ 173 174HEADER_DEPS = \ 175 ../include/curses.h \ 176 ../include/ncurses_cfg.h \ 177 ../include/ncurses_def.h \ 178 ../include/ncurses_dll.h \ 179 ../include/term.h \ 180 ../include/unctrl.h \ 181 $(BASE_DIR)/curses.priv.h \ 182 $(BASE_DIR)/new_pair.h \ 183 $(INCDIR)/nc_alloc.h \ 184 $(INCDIR)/nc_panel.h \ 185 $(INCDIR)/nc_string.h \ 186 $(INCDIR)/nc_termios.h \ 187 $(INCDIR)/nc_tparm.h \ 188 $(INCDIR)/term_entry.h \ 189 $(srcdir)/menu.priv.h \ 190 $(AUTO_SRC) 191 192tags: 193 $(CTAGS) *.[ch] 194 195@MAKE_UPPER_TAGS@TAGS: 196@MAKE_UPPER_TAGS@ $(ETAGS) *.[ch] 197 198mostlyclean :: 199 -rm -f core tags TAGS *~ *.bak *.i *.ln *.atac trace 200 201clean :: mostlyclean 202 -rm -f $(AUTO_SRC) 203 -rm -rf .libs *.dSYM 204 205distclean :: clean 206 -rm -f Makefile 207 208realclean :: distclean 209 210############################################################################### 211# The remainder of this file is automatically generated during configuration 212############################################################################### 213