]> ncurses.scripts.mit.edu Git - ncurses.git/blobdiff - form/Makefile.in
ncurses 6.2 - patch 20200222
[ncurses.git] / form / Makefile.in
index e5680cd737cab8141ceff2a0dc1c290b2c4dcea2..d6f83af88e13cf323853db06020bec63f5452abc 100644 (file)
@@ -1,6 +1,7 @@
-# $Id: Makefile.in,v 1.60 2014/12/20 20:27:55 tom Exp $
+# $Id: Makefile.in,v 1.67 2020/02/22 16:32:11 tom Exp $
 ##############################################################################
-# Copyright (c) 1998-2013,2014 Free Software Foundation, Inc.                #
+# Copyright 2020 Thomas E. Dickey                                            #
+# Copyright 1998-2015,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"), #
@@ -42,7 +43,7 @@
 # turn off _all_ suffix rules; we'll generate our own
 .SUFFIXES:
 
-SHELL          = /bin/sh
+SHELL          = @SHELL@
 VPATH          = @srcdir@
 THIS           = Makefile
 
@@ -75,7 +76,7 @@ LT_UNDEF      = @LT_UNDEF@
 
 INSTALL                = @INSTALL@
 INSTALL_LIB    = @INSTALL@ @INSTALL_LIB@
-INSTALL_PROG   = @INSTALL_PROGRAM@
+INSTALL_PROG   = @INSTALL_PROGRAM@ @INSTALL_OPT_S@
 INSTALL_DATA   = @INSTALL_DATA@
 
 AR             = @AR@
@@ -91,7 +92,9 @@ CC            = @CC@
 CPP            = @CPP@
 CFLAGS         = @CFLAGS@
 
-CPPFLAGS       = -I${top_srcdir}/ncurses -DHAVE_CONFIG_H @CPPFLAGS@
+INCDIR         = $(top_srcdir)/include
+BASE_DIR       = $(top_srcdir)/ncurses
+CPPFLAGS       = -I$(BASE_DIR) -DHAVE_CONFIG_H @CPPFLAGS@
 
 CCFLAGS                = $(CPPFLAGS) $(CFLAGS)
 
@@ -107,7 +110,7 @@ LINK                = $(LIBTOOL_LINK)
 LDFLAGS                = @LDFLAGS@ @LD_MODEL@ @LIBS@
 
 SHLIB_DIRS     = -L../lib
-SHLIB_LIST     = $(SHLIB_DIRS) -lncurses@LIB_SUFFIX@ @SHLIB_LIST@
+SHLIB_LIST     = $(SHLIB_DIRS) -lncurses@USE_LIB_SUFFIX@ @SHLIB_LIST@
 
 RPATH_LIST     = @RPATH_LIST@
 RESULTING_SYMS = @RESULTING_SYMS@
@@ -148,11 +151,24 @@ $(DESTDIR)$(libdir) :
        cp $(srcdir)/form.h $@
 
 HEADER_DEPS = \
-       $(srcdir)/form.priv.h \
-       $(srcdir)/form.h \
-       ../include/mf_common.h \
        ../include/curses.h \
-       ../include/eti.h
+       ../include/eti.h \
+       ../include/mf_common.h \
+       ../include/ncurses_cfg.h \
+       ../include/ncurses_def.h \
+       ../include/ncurses_dll.h \
+       ../include/term.h \
+       ../include/unctrl.h \
+       $(BASE_DIR)/curses.priv.h \
+       $(BASE_DIR)/new_pair.h \
+       $(INCDIR)/nc_alloc.h \
+       $(INCDIR)/nc_panel.h \
+       $(INCDIR)/nc_string.h \
+       $(INCDIR)/nc_termios.h \
+       $(INCDIR)/nc_tparm.h \
+       $(INCDIR)/term_entry.h \
+       $(srcdir)/form.h \
+       $(srcdir)/form.priv.h
 
 tags:
        $(CTAGS) *.[ch]
@@ -168,6 +184,7 @@ clean :: mostlyclean
 
 distclean :: clean
        -rm -f Makefile
+       -rm -rf .libs *.dSYM
 
 realclean :: distclean