]> ncurses.scripts.mit.edu Git - ncurses.git/blobdiff - test/Makefile.in
ncurses 6.2 - patch 20200301
[ncurses.git] / test / Makefile.in
index 6600cd788254600c95a44662da016b7735bbde71..5358fc21d0cda982667b1ad624c00123ce936b1a 100644 (file)
@@ -1,6 +1,7 @@
-# $Id: Makefile.in,v 1.111 2013/10/05 23:46:10 tom Exp $
+# $Id: Makefile.in,v 1.122 2020/02/22 16:51:31 tom Exp $
 ##############################################################################
-# Copyright (c) 1998-2011,2013 Free Software Foundation, Inc.                #
+# Copyright 2020 Thomas E. Dickey                                            #
+# Copyright 1998-2017,2018 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@
 
 @SET_MAKE@
@@ -44,6 +45,7 @@ x             = @EXEEXT@
 o              = .@OBJEXT@
 
 MODEL          = ../@DFT_OBJ_SUBDIR@
+top_srcdir     = @top_srcdir@
 srcdir         = @srcdir@
 prefix         = @prefix@
 exec_prefix    = @exec_prefix@
@@ -53,18 +55,26 @@ bindir              = @bindir@
 libdir         = @libdir@
 includedir     = @includedir@
 includesubdir  = @includesubdir@
+datarootdir    = @datarootdir@
+datadir                = @datadir@
 
 BINDIR         = $(DESTDIR)$(bindir)
 LIBDIR         = $(DESTDIR)$(libdir)
 INCLUDEDIR     = $(DESTDIR)$(includedir)$(includesubdir)
+DATADIR                = $(DESTDIR)$(datadir)
+
+PACKAGE                = @PACKAGE@
 
 LIBTOOL                = @LIBTOOL@
+LIBTOOL_OPTS   = @LIBTOOL_OPTS@
 LIBTOOL_CLEAN  = @LIB_CLEAN@
 LIBTOOL_COMPILE        = @LIB_COMPILE@
 LIBTOOL_LINK   = @LIB_LINK@
 
-INSTALL                = @INSTALL@
-INSTALL_PROG   = @INSTALL_PROGRAM@
+INSTALL                = @INSTALL@ @INSTALL_OPT_O@
+INSTALL_PROG   = @INSTALL_PROGRAM@ @INSTALL_OPT_S@
+INSTALL_SCRIPT = @INSTALL_SCRIPT@
+INSTALL_DATA   = @INSTALL_DATA@
 transform      = @program_transform_name@
 TRANSFORM      = sed 's/$x$$//'|sed '$(transform)'|sed 's/$$/$x/'
 
@@ -75,7 +85,7 @@ CC            = @CC@
 CPP            = @CPP@
 
 CFLAGS         = @CFLAGS@ @EXTRA_CFLAGS@
-CPPFLAGS       = -I. -I$(srcdir) -I../test -DHAVE_CONFIG_H @CPPFLAGS@
+CPPFLAGS       = -I. -I$(srcdir) -I../test -DHAVE_CONFIG_H -DDATA_DIR=\"$(datadir)\" @CPPFLAGS@
 
 CCFLAGS                = $(CPPFLAGS) $(CFLAGS)
 
@@ -127,8 +137,16 @@ LINT               = @LINT@
 LINT_OPTS      = @LINT_OPTS@
 LINT_LIBS      = -lform -lmenu -lpanel -lncurses @LIBS@
 
+INCDIR         = $(top_srcdir)/include
+
 HEADER_DEPS    = \
        ../include/curses.h \
-       ../include/term.h
+       ../include/term.h \
+       ../include/ncurses_cfg.h \
+       ../include/ncurses_def.h \
+       ../include/ncurses_dll.h \
+       ../include/term.h \
+       ../include/unctrl.h \
+       $(INCDIR)/nc_alloc.h
 
 # The rest is generated from the "programs" and "modules" files...