]> ncurses.scripts.mit.edu Git - ncurses.git/blobdiff - man/Makefile.in
ncurses 6.2 - patch 20201212
[ncurses.git] / man / Makefile.in
index fde9a935ba3feb87191ae4b5d08f4701412de485..f379db1224ed62845a590792420c0bc4fe07d19c 100644 (file)
@@ -1,6 +1,7 @@
-# $Id: Makefile.in,v 1.43 2010/03/13 20:28:21 tom Exp $
+# $Id: Makefile.in,v 1.50 2020/02/02 23:34:34 tom Exp $
 ##############################################################################
 ##############################################################################
-# Copyright (c) 1998-2007,2010 Free Software Foundation, Inc.                #
+# Copyright 2019,2020 Thomas E. Dickey                                       #
+# Copyright 1998-2013,2015 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"), #
 #                                                                            #
 # Permission is hereby granted, free of charge, to any person obtaining a    #
 # copy of this software and associated documentation files (the "Software"), #
 # NOTE: When you add or rename a man page, make sure you update both
 # the top-level MANIFEST and any man/*.renames files!
 
 # NOTE: When you add or rename a man page, make sure you update both
 # the top-level MANIFEST and any man/*.renames files!
 
-SHELL          = /bin/sh
+SHELL          = @SHELL@
+VPATH          = @srcdir@
 
 DESTDIR                = @DESTDIR@
 srcdir         = @srcdir@
 prefix         = @prefix@
 exec_prefix    = @exec_prefix@
 
 DESTDIR                = @DESTDIR@
 srcdir         = @srcdir@
 prefix         = @prefix@
 exec_prefix    = @exec_prefix@
+datarootdir    = @datarootdir@
 datadir                = @datadir@
 mandir         = @mandir@
 datadir                = @datadir@
 mandir         = @mandir@
+includesubdir  = @includesubdir@
+
+INCLUDEDIR     = $(DESTDIR)$(includedir)$(includesubdir)
 
 INSTALL                = @INSTALL@
 INSTALL_DATA   = @INSTALL_DATA@
 
 INSTALL                = @INSTALL@
 INSTALL_DATA   = @INSTALL_DATA@
@@ -52,20 +58,25 @@ depend :
 tags :
 
 $(DESTDIR)$(mandir) :
 tags :
 
 $(DESTDIR)$(mandir) :
-       sh $(srcdir)/../mkdirs.sh $@
+       mkdir -p $@
 
 EDITARGS = $(DESTDIR)$(mandir) $(srcdir) terminfo.5 *-config.1 $(srcdir)/*.[0-9]*
 
 install install.man : terminfo.5 $(DESTDIR)$(mandir)
 
 EDITARGS = $(DESTDIR)$(mandir) $(srcdir) terminfo.5 *-config.1 $(srcdir)/*.[0-9]*
 
 install install.man : terminfo.5 $(DESTDIR)$(mandir)
-       sh ../edit_man.sh normal installing $(EDITARGS)
+       $(SHELL) ../edit_man.sh normal installing $(EDITARGS)
 
 uninstall uninstall.man :
 
 uninstall uninstall.man :
-       -sh ../edit_man.sh normal removing $(EDITARGS)
+       -$(SHELL) ../edit_man.sh normal removing $(EDITARGS)
 
 # We compose terminfo.5 from the real sources...
 
 # We compose terminfo.5 from the real sources...
-CAPLIST=$(srcdir)/../include/@TERMINFO_CAPS@
-terminfo.5: $(srcdir)/terminfo.head $(CAPLIST) $(srcdir)/terminfo.tail Makefile $(srcdir)/MKterminfo.sh
-       sh $(srcdir)/MKterminfo.sh $(srcdir)/terminfo.head $(CAPLIST) $(srcdir)/terminfo.tail >terminfo.5
+CAPLIST        = \
+       $(srcdir)/../include/@TERMINFO_CAPS@ \
+       $(srcdir)/../include/Caps-ncurses
+terminfo.5: $(srcdir)/terminfo.head \
+               $(CAPLIST) \
+               $(srcdir)/terminfo.tail \
+               Makefile $(srcdir)/MKterminfo.sh
+       $(SHELL) $(srcdir)/MKterminfo.sh $(srcdir)/terminfo.head $(CAPLIST) $(srcdir)/terminfo.tail >terminfo.5
 
 mostlyclean :
        -rm -f core tags TAGS *~ *.bak *.ln *.atac trace
 
 mostlyclean :
        -rm -f core tags TAGS *~ *.bak *.ln *.atac trace
@@ -74,7 +85,7 @@ clean:        mostlyclean
        rm -f terminfo.5
 
 ../edit_man.sed : make_sed.sh @MANPAGE_RENAMES@
        rm -f terminfo.5
 
 ../edit_man.sed : make_sed.sh @MANPAGE_RENAMES@
-       sh $(srcdir)/make_sed.sh @MANPAGE_RENAMES@ >../edit_man.sed
+       $(SHELL) $(srcdir)/make_sed.sh @MANPAGE_RENAMES@ >../edit_man.sed
 
 distclean realclean: clean
        rm -f Makefile *-config.1 ../edit_man.* ../man_alias.*
 
 distclean realclean: clean
        rm -f Makefile *-config.1 ../edit_man.* ../man_alias.*