X-Git-Url: https://ncurses.scripts.mit.edu/?p=ncurses.git;a=blobdiff_plain;f=include%2FMakefile.in;h=e2a2f8a22866ab49f98974204207e2125b286bd5;hp=1a48a1700a86401ce2965b2ecdc5ad240ad12c22;hb=950eed9ace2ceff30b88c20de1ef8a0ba05ac567;hpb=46722468f47c2b77b3987729b4bcf2321cccfd01 diff --git a/include/Makefile.in b/include/Makefile.in index 1a48a170..e2a2f8a2 100644 --- a/include/Makefile.in +++ b/include/Makefile.in @@ -1,6 +1,6 @@ -# $Id: Makefile.in,v 1.35 2001/12/08 18:50:06 tom Exp $ +# $Id: Makefile.in,v 1.40 2010/11/27 21:45:27 tom Exp $ ############################################################################## -# Copyright (c) 1998,2000,2001 Free Software Foundation, Inc. # +# Copyright (c) 1998,2009,2010 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"), # @@ -40,6 +40,7 @@ .SUFFIXES: SHELL = /bin/sh +VPATH = @srcdir@ THIS = Makefile DESTDIR = @DESTDIR@ @@ -54,6 +55,9 @@ INSTALL_DATA = @INSTALL_DATA@ AWK = @AWK@ LN_S = @LN_S@ +CTAGS = @CTAGS@ +ETAGS = @ETAGS@ + VERSION = @cf_cv_rel_version@ # The "Caps" file specifies the terminfo database format, as well as the list @@ -64,6 +68,7 @@ TERMINFO_CAPS = $(srcdir)/@TERMINFO_CAPS@ CONFIG_SRC = \ MKterm.h.awk \ curses.head \ + ncurses_dll.h \ termcap.h \ unctrl.h @@ -73,6 +78,7 @@ AUTO_SRC = \ hashsize.h \ ncurses_def.h \ parametrized.h \ + config.h \ term.h ################################################################################ @@ -104,11 +110,15 @@ ncurses_def.h: $(srcdir)/ncurses_defs $(srcdir)/MKncurses_def.sh parametrized.h: $(TERMINFO_CAPS) $(srcdir)/MKparametrized.sh AWK=$(AWK) sh $(srcdir)/MKparametrized.sh $(TERMINFO_CAPS) >$@ +# This is required by pthread.h on MinGW +config.h: + touch $@ + tags: - ctags *.[ch] + $(CTAGS) *.[ch] @MAKE_UPPER_TAGS@TAGS: -@MAKE_UPPER_TAGS@ etags *.[ch] +@MAKE_UPPER_TAGS@ $(ETAGS) *.[ch] mostlyclean :: -rm -f core tags TAGS *~ *.bak *.i *.ln *.atac trace @@ -117,7 +127,7 @@ clean :: mostlyclean -rm -f $(AUTO_SRC) distclean :: clean - -rm -f Makefile $(CONFIG_SRC) + -rm -f Makefile $(CONFIG_SRC) config.h realclean :: distclean