]> ncurses.scripts.mit.edu Git - ncurses.git/blobdiff - progs/Makefile.in
ncurses 6.5 - patch 20240504
[ncurses.git] / progs / Makefile.in
index d818af4e8154a80a7759030a395b283131219b57..218e64e0c426ae708cadc52e01025a1ddb5f5ac3 100644 (file)
@@ -1,6 +1,6 @@
-# $Id: Makefile.in,v 1.111 2021/07/03 15:45:33 tom Exp $
+# $Id: Makefile.in,v 1.115 2024/04/08 18:33:54 tom Exp $
 ##############################################################################
-# Copyright 2020,2021 Thomas E. Dickey                                       #
+# Copyright 2020-2021,2024 Thomas E. Dickey                                  #
 # Copyright 1998-2016,2018 Free Software Foundation, Inc.                    #
 #                                                                            #
 # Permission is hereby granted, free of charge, to any person obtaining a    #
@@ -93,7 +93,8 @@ CPP           = @CPP@
 CFLAGS         = @CFLAGS@ @EXTRA_CFLAGS@
 
 INCDIR         = $(top_srcdir)/include
-CPPFLAGS       = -DHAVE_CONFIG_H -I../progs @CPPFLAGS@
+NCUDIR         = $(top_srcdir)/ncurses
+CPPFLAGS       = -DHAVE_CONFIG_H -I../progs -I../ncurses -I$(top_srcdir)/ncurses @CPPFLAGS@
 
 CCFLAGS                = $(CPPFLAGS) $(CFLAGS)
 
@@ -145,10 +146,24 @@ PROGS = $(PUT_PROGS) $(GET_PROGS)
 DEPS_CURSES = ../lib/@LIB_PREFIX@ncurses@DFT_DEP_SUFFIX@
 
 HEADER_DEPS    = \
-       ../include/curses.h \
+       $(INCDIR)/nc_access.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 \
        $(INCDIR)/tic.h \
-       $(INCDIR)/nc_alloc.h
+       $(NCUDIR)/curses.priv.h \
+       $(NCUDIR)/new_pair.h \
+       $(NCUDIR)/term.priv.h \
+       $(srcdir)/progs.priv.h \
+       ../include/curses.h \
+       ../include/ncurses_cfg.h \
+       ../include/ncurses_def.h \
+       ../include/ncurses_dll.h \
+       ../include/term.h \
+       ../include/unctrl.h
 
 ################################################################################