blob: 8c132ee9510e5e2ecacc7c661df127b93790c55c [file] [log] [blame]
LuK133752a81d52025-07-08 18:07:20 -04001# $Id: Makefile.in,v 1.133 2021/07/03 18:53:57 tom Exp $
2##############################################################################
3# Copyright 2018-2020,2021 Thomas E. Dickey #
4# Copyright 1998-2015,2016 Free Software Foundation, Inc. #
5# #
6# Permission is hereby granted, free of charge, to any person obtaining a #
7# copy of this software and associated documentation files (the "Software"), #
8# to deal in the Software without restriction, including without limitation #
9# the rights to use, copy, modify, merge, publish, distribute, distribute #
10# with modifications, sublicense, and/or sell copies of the Software, and to #
11# permit persons to whom the Software is furnished to do so, subject to the #
12# following conditions: #
13# #
14# The above copyright notice and this permission notice shall be included in #
15# all copies or substantial portions of the Software. #
16# #
17# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR #
18# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, #
19# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL #
20# THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER #
21# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING #
22# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER #
23# DEALINGS IN THE SOFTWARE. #
24# #
25# Except as contained in this notice, the name(s) of the above copyright #
26# holders shall not be used in advertising or otherwise to promote the sale, #
27# use or other dealings in this Software without prior written #
28# authorization. #
29##############################################################################
30#
31# Author: Thomas E. Dickey
32#
33# Simple makefile for c++ window class demo
34
35# turn off _all_ suffix rules; we'll generate our own
36.SUFFIXES:
37
38SHELL = /bin/sh
39
40
41CF_MFLAGS =
42
43x =
44o = .o
45
46MODEL = ../objects
47DESTDIR =
48top_srcdir = ..
49srcdir = .
50prefix = /usr
51exec_prefix = ${prefix}
52bindir = ${exec_prefix}/bin
53libdir = ${exec_prefix}/lib
54includedir = ${prefix}/include
55includesubdir =
56
57INCLUDEDIR = $(DESTDIR)$(includedir)$(includesubdir)
58
59PACKAGE = ncursesw
60
61LIBTOOL =
62LIBTOOL_OPTS =
63LIBTOOL_CLEAN =
64LIBTOOL_COMPILE =
65LIBTOOL_LINK = ${CC}
66LIBTOOL_INSTALL =
67LIBTOOL_UNINSTALL =
68LIBTOOL_VERSION = -version-number
69LT_UNDEF =
70
71INSTALL = /usr/bin/install -c
72INSTALL_LIB = $(INSTALL) -m 644 -p
73INSTALL_DATA = ${INSTALL} -m 644
74INSTALL_OPT_P = -p
75
76AR = ar
77ARFLAGS = -curvU
78AWK = mawk
79LD = ld
80LN_S = ln -s -f
81
82CXX_AR = $(AR)
83CXX_ARFLAGS = $(ARFLAGS)
84RANLIB = ranlib
85
86CXX = /usr/bin/g++
87CPP = /usr/bin/g++ -E
88CXXFLAGS = -O2
89CXXLIBS =
90
91INCDIR = ../include
92CPPFLAGS = -DHAVE_CONFIG_H -DBUILDING_NCURSES_CXX -I../c++ -I. -I../include -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=600 -DNDEBUG
93
94CTAGS = ctags
95ETAGS = etags
96
97CC = ${CXX}
98CCFLAGS = $(CPPFLAGS) $(CXXFLAGS)
99
100CFLAGS_LIBTOOL = $(CCFLAGS)
101CFLAGS_NORMAL = $(CCFLAGS) -DNCURSES_STATIC
102CFLAGS_DEBUG = $(CCFLAGS) -DNCURSES_STATIC -g -DTRACE
103CFLAGS_PROFILE = $(CCFLAGS) -DNCURSES_STATIC -pg
104CFLAGS_SHARED = $(CCFLAGS) -fPIC
105
106CFLAGS_DEFAULT = $(CFLAGS_NORMAL)
107
108NCURSES_MAJOR = 6
109NCURSES_MINOR = 5
110REL_VERSION = 6.5
111ABI_VERSION = 6
112
113LOCAL_LIBDIR = /home/micky387/Omni/external/libncurses/lib
114
115LINK = $(LIBTOOL_LINK)
116SHLIB_DIRS = -L../lib
117SHLIB_LIST = $(SHLIB_DIRS) \
118 -lformw \
119 -lmenuw \
120 -lpanelw \
121 -lncursesw
122
123LIBROOT = ncurses++
124
125LIBNAME_LIBTOOL = lib$(LIBROOT)w.la
126LIBNAME_NORMAL = lib$(LIBROOT)w.a
127LIBNAME = lib$(LIBROOT)w.a
128
129LIBRARIES = ../lib/libncurses++w.a ../lib/libncurses++w_g.a
130
131LINT =
132LINT_OPTS =
133LINT_LIBS = -lncurses
134
135LINK_FLAGS = -L../lib -l$(LIBROOT)w
136RPATH_LIST = ${libdir}
137MK_SHARED_LIB = ${CC} ${LDFLAGS} ${CFLAGS} -shared -Wl,-soname,`basename $@ .${REL_VERSION}`.${ABI_VERSION},-stats,-lc -o $@
138
139LINK_LIBTOOL = -L../lib $(LIBRARIES)
140LINK_NORMAL = $(LINK_FLAGS)
141LINK_DEBUG = $(LINK_FLAGS)
142LINK_PROFILE = $(LINK_FLAGS)
143LINK_SHARED = $(LINK_FLAGS)
144
145# flags for test-programs
146TEST_LIBS = -lutil
147TEST_ARGS = -L../lib -lformw -lmenuw -lpanelw -lncursesw
148TEST_LDFLAGS = $(TEST_ARGS) \
149 $(TEST_LIBS) $(CXXLIBS)
150
151LDFLAGS_LIBTOOL = $(TEST_LDFLAGS) $(CFLAGS_LIBTOOL)
152LDFLAGS_NORMAL = $(TEST_LDFLAGS) $(CFLAGS_NORMAL)
153LDFLAGS_DEBUG = $(TEST_LDFLAGS) $(CFLAGS_DEBUG)
154LDFLAGS_PROFILE = $(TEST_LDFLAGS) $(CFLAGS_PROFILE)
155LDFLAGS_SHARED = $(TEST_LDFLAGS) $(CFLAGS_SHARED)
156
157LDFLAGS_DEFAULT = $(LINK_NORMAL) $(LDFLAGS_NORMAL)
158
159# flags for library built by this makefile
160LDFLAGS = $(TEST_ARGS) \
161 $(TEST_LIBS) $(CXXLIBS)
162
163AUTO_SRC = \
164 etip.h
165
166################################################################################
167
168.PHONY : all
169.PHONY : check
170.PHONY : clean
171.PHONY : depend
172.PHONY : distclean
173.PHONY : install
174.PHONY : install.libs
175.PHONY : libs
176.PHONY : mostlyclean
177.PHONY : realclean
178.PHONY : sources
179.PHONY : uninstall
180.PHONY : uninstall.libs
181
182all \
183libs :: $(AUTO_SRC) $(LIBRARIES)
184
185all :: demo$x
186
187depend :
188
189sources : $(AUTO_SRC)
190
191tags:
192 $(CTAGS) *.[h] *.cc
193
194$(DESTDIR)$(libdir) :
195 mkdir -p $@
196
197mostlyclean ::
198 -rm -f core tags TAGS *~ *.bak *.i *.ii *.ln *.atac trace
199
200clean :: mostlyclean
201 -$(SHELL) -c "if test -n '$x' ; then $(MAKE) clean x=''; fi"
202 -rm -rf $(MODEL)/SunWS_cache
203 -$(LIBTOOL_CLEAN) rm -f demo$x $(AUTO_SRC) $(LIBRARIES) $(OBJS_DEMO)
204 -rm -rf .libs *.dSYM
205
206distclean :: clean
207 -rm -f Makefile
208
209realclean :: distclean
210
211###############################################################################
212
213HEADER_DEPS = \
214 etip.h \
215 ../include/curses.h \
216 ../include/eti.h \
217 ../include/form.h \
218 ../include/menu.h \
219 ../include/ncurses_cfg.h \
220 ../include/ncurses_def.h \
221 ../include/ncurses_dll.h \
222 ../include/panel.h \
223 ../include/unctrl.h \
224 $(INCDIR)/nc_string.h \
225 $(srcdir)/cursesp.h \
226 $(srcdir)/cursesw.h \
227 $(srcdir)/cursslk.h \
228 $(srcdir)/internal.h
229
230cursesw_h = $(srcdir)/cursesw.h \
231 $(HEADER_DEPS)
232
233cursesp_h = $(srcdir)/cursesp.h \
234 $(cursesw_h)
235
236cursesf_h = $(srcdir)/cursesf.h \
237 $(cursesp_h)
238
239cursesm_h = $(srcdir)/cursesm.h \
240 $(cursesp_h)
241
242cursslk_h = $(srcdir)/cursslk.h \
243 $(cursesw_h)
244
245cursesapp_h = $(srcdir)/cursesapp.h \
246 $(cursslk_h)
247
248$(INCDIR)/form.h :
249 ( cd ../form && $(MAKE) $@ )
250
251$(INCDIR)/menu.h :
252 ( cd ../menu && $(MAKE) $@ )
253
254$(INCDIR)/panel.h :
255 ( cd ../panel && $(MAKE) $@ )
256
257###############################################################################
258
259OBJS_DEMO = $(MODEL)/demo$o
260
261$(MODEL)/demo$o : $(srcdir)/demo.cc \
262 $(HEADER_DEPS) \
263 $(cursesf_h) \
264 $(cursesm_h) \
265 $(cursesapp_h)
266 @echo 'compiling demo (obj_s)'
267 @( cd $(MODEL) && $(LIBTOOL_COMPILE) $(CXX) $(CFLAGS_DEFAULT) -c $(top_srcdir)/c++/demo.cc -o $@ )
268
269demo$x: $(OBJS_DEMO) \
270 $(LIBRARIES) \
271 ../lib/libformw.a ../lib/libmenuw.a ../lib/libpanelw.a ../lib/libncursesw.a
272 $(LINK) -o $@ $(OBJS_DEMO) $(LDFLAGS_DEFAULT)
273
274etip.h: $(srcdir)/etip.h.in $(srcdir)/edit_cfg.sh
275 cp $(srcdir)/etip.h.in $@
276 $(SHELL) $(srcdir)/edit_cfg.sh ../include/ncurses_cfg.h $@
277
278# Verify that each header-file can be compiled without including another.
279check ::
280 @$(SHELL) -c "for header in *.h;\
281 do \
282 [ \$${header} = etip.h ] && continue; \
283 echo \"** testing \$${header}\" ; \
284 echo \"#include <\$${header}>\" >headers.cc; \
285 echo \"int main(int argc, char **argv) { (void) argc; (void) argv; return 0; }\" >>headers.cc; \
286 $(CXX) -c $(CXXFLAGS) $(CPPFLAGS) headers.cc; \
287 done"
288 -@rm -f headers.*
289
290###############################################################################
291# The remainder of this file is automatically generated during configuration
292###############################################################################
293
294# Generated by CF_LIB_RULES
295resulting.map:
296 mawk 'BEGIN { skip = 1; last=""; } /deprecated in ABI6/ { next; }{ sub("NCURSES([WT]+)?", "&6"); } { if ( last != "" && ( skip == 0 || $$0 !~ /}/ ) ) { print last; } skip = 0; last = $$0; } END { print last; }' < "" >$@
297
298distclean::
299 rm -f resulting.map
300
301# generated by mk-0th.awk
302# libname: c++w
303# subsets: ticlib+termlib+ext_tinfo+base+widechar+ext_funcs
304
305.SUFFIXES: .c .cc .h .i .ii
306.c.i :
307 $(CPP) $(CPPFLAGS) $< >$@
308.cc.ii :
309 $(CPP) $(CPPFLAGS) $< >$@
310.h.i :
311 $(CPP) $(CPPFLAGS) $< >$@
312
313C_SRC = \
314 $(srcdir)/cursesf.cc \
315 $(srcdir)/cursesm.cc \
316 $(srcdir)/cursesw.cc \
317 $(srcdir)/cursespad.cc \
318 $(srcdir)/cursesp.cc \
319 $(srcdir)/cursslk.cc \
320 $(srcdir)/cursesapp.cc \
321 $(srcdir)/cursesmain.cc
322
323clean ::
324 rm -f llib-lc++w.*
325
326realclean ::
327 rm -f llib-lc++w
328
329llib-lc++w : $(C_SRC)
330 cproto -a -l -DNCURSES_ENABLE_STDBOOL_H=0 -DLINT $(CPPFLAGS) $(C_SRC) >$@
331
332lintlib ::
333 sh $(srcdir)/../misc/makellib c++w $(CPPFLAGS)
334
335lint ::
336 $(LINT) $(LINT_OPTS) $(CPPFLAGS) $(C_SRC) $(LINT_LIBS)
337
338# generated by mk-1st.awk (subset=ticlib+termlib+ext_tinfo+base+widechar+ext_funcs)
339# name: ncurses++w
340# traces: DEBUG
341# MODEL: NORMAL
342# CXX_MODEL: NORMAL
343# LIB_SUFFIX: w
344# USE_LIB_SUFFIX: w
345# model: objects
346# prefix: lib
347# suffix: .a
348# subset: ticlib+termlib+ext_tinfo+base+widechar+ext_funcs
349# driver: no
350# ShlibVer: rel
351# ShlibVerInfix: no
352# SymLink: ln -s -f
353# TermlibRoot: ncursesw
354# TermlibSuffix: .a
355# ReLink: no
356# ReRanlib: no
357# DoLinks: yes
358# rmSoLocs: no
359# ldconfig: /usr/sbin/ldconfig
360# make_phony: yes
361# overwrite: yes
362# depend: ../include/ncurses_cfg.h
363# host: x86_64-pc-linux-gnu
364# libtool_version: -version-number
365
366NORMAL_OBJS = \
367 ../objects/cursesf$o \
368 ../objects/cursesm$o \
369 ../objects/cursesw$o \
370 ../objects/cursespad$o \
371 ../objects/cursesp$o \
372 ../objects/cursslk$o \
373 ../objects/cursesapp$o \
374 ../objects/cursesmain$o
375
376$(NORMAL_OBJS) : ../include/ncurses_cfg.h
377
378../lib/libncurses++w.a : $(NORMAL_OBJS)
379 @sleep 1
380 $(CXX_AR) $(CXX_ARFLAGS) $@ $?
381 $(RANLIB) $@
382
383install \
384install.libs \
385install.ncurses++w :: $(DESTDIR)$(libdir) ../lib/libncurses++w.a
386 @echo installing ../lib/libncurses++w.a as $(DESTDIR)$(libdir)/libncurses++w.a
387 $(INSTALL_DATA) ../lib/libncurses++w.a $(DESTDIR)$(libdir)/libncurses++w.a
388
389uninstall \
390uninstall.libs \
391uninstall.ncurses++w ::
392 @echo uninstalling $(DESTDIR)$(libdir)/libncurses++w.a
393 -@rm -f $(DESTDIR)$(libdir)/libncurses++w.a
394
395clean ::
396 -rm -f ../lib/libncurses++w.a
397
398mostlyclean::
399 -rm -f $(NORMAL_OBJS)
400
401# generated by mk-2nd.awk
402# model: objects
403# MODEL: NORMAL
404# echo: yes
405# subset: ticlib+termlib+ext_tinfo+base+widechar+ext_funcs
406# crenames: yes
407# cxxrenames: yes
408# traces: DEBUG
409# srcdir: .
410
411../objects/cursesf$o : $(srcdir)/cursesf.cc \
412 $(internal_h) \
413 $(cursesf_h) \
414 $(cursesapp_h)
415 $(LIBTOOL_COMPILE) $(CXX) $(CFLAGS_NORMAL) -c ../c++/cursesf.cc -o ../objects/cursesf$o
416
417../objects/cursesm$o : $(srcdir)/cursesm.cc \
418 $(internal_h) \
419 $(cursesm_h) \
420 $(cursesapp_h)
421 $(LIBTOOL_COMPILE) $(CXX) $(CFLAGS_NORMAL) -c ../c++/cursesm.cc -o ../objects/cursesm$o
422
423../objects/cursesw$o : $(srcdir)/cursesw.cc \
424 $(internal_h) \
425 $(cursesw_h)
426 $(LIBTOOL_COMPILE) $(CXX) $(CFLAGS_NORMAL) -c ../c++/cursesw.cc -o ../objects/cursesw$o
427
428../objects/cursespad$o : $(srcdir)/cursespad.cc \
429 $(internal_h) \
430 $(cursesw_h)
431 $(LIBTOOL_COMPILE) $(CXX) $(CFLAGS_NORMAL) -c ../c++/cursespad.cc -o ../objects/cursespad$o
432
433../objects/cursesp$o : $(srcdir)/cursesp.cc \
434 $(internal_h) \
435 $(cursesp_h)
436 $(LIBTOOL_COMPILE) $(CXX) $(CFLAGS_NORMAL) -c ../c++/cursesp.cc -o ../objects/cursesp$o
437
438../objects/cursslk$o : $(srcdir)/cursslk.cc \
439 $(internal_h) \
440 $(cursesapp_h)
441 $(LIBTOOL_COMPILE) $(CXX) $(CFLAGS_NORMAL) -c ../c++/cursslk.cc -o ../objects/cursslk$o
442
443../objects/cursesapp$o : $(srcdir)/cursesapp.cc \
444 $(internal_h) \
445 $(cursesapp_h)
446 $(LIBTOOL_COMPILE) $(CXX) $(CFLAGS_NORMAL) -c ../c++/cursesapp.cc -o ../objects/cursesapp$o
447
448../objects/cursesmain$o : $(srcdir)/cursesmain.cc \
449 $(internal_h) \
450 $(cursesapp_h) \
451 $(INCDIR)/nc_alloc.h
452 $(LIBTOOL_COMPILE) $(CXX) $(CFLAGS_NORMAL) -c ../c++/cursesmain.cc -o ../objects/cursesmain$o
453
454
455# generated by mk-1st.awk (subset=ticlib+termlib+ext_tinfo+base+widechar+ext_funcs)
456# name: ncurses++w
457# traces: DEBUG
458# MODEL: DEBUG
459# CXX_MODEL: DEBUG
460# LIB_SUFFIX: w
461# USE_LIB_SUFFIX: w
462# model: obj_g
463# prefix: lib
464# suffix: _g.a
465# subset: ticlib+termlib+ext_tinfo+base+widechar+ext_funcs
466# driver: no
467# ShlibVer: rel
468# ShlibVerInfix: no
469# SymLink: ln -s -f
470# TermlibRoot: ncursesw
471# TermlibSuffix: .a
472# ReLink: no
473# ReRanlib: no
474# DoLinks: yes
475# rmSoLocs: no
476# ldconfig: /usr/sbin/ldconfig
477# make_phony: yes
478# overwrite: yes
479# depend: ../include/ncurses_cfg.h
480# host: x86_64-pc-linux-gnu
481# libtool_version: -version-number
482
483DEBUG_OBJS = \
484 ../obj_g/cursesf$o \
485 ../obj_g/cursesm$o \
486 ../obj_g/cursesw$o \
487 ../obj_g/cursespad$o \
488 ../obj_g/cursesp$o \
489 ../obj_g/cursslk$o \
490 ../obj_g/cursesapp$o \
491 ../obj_g/cursesmain$o
492
493$(DEBUG_OBJS) : ../include/ncurses_cfg.h
494
495../lib/libncurses++w_g.a : $(DEBUG_OBJS)
496 @sleep 1
497 $(CXX_AR) $(CXX_ARFLAGS) $@ $?
498 $(RANLIB) $@
499
500install \
501install.libs \
502install.ncurses++w :: $(DESTDIR)$(libdir) ../lib/libncurses++w_g.a
503 @echo installing ../lib/libncurses++w_g.a as $(DESTDIR)$(libdir)/libncurses++w_g.a
504 $(INSTALL_DATA) ../lib/libncurses++w_g.a $(DESTDIR)$(libdir)/libncurses++w_g.a
505
506uninstall \
507uninstall.libs \
508uninstall.ncurses++w ::
509 @echo uninstalling $(DESTDIR)$(libdir)/libncurses++w_g.a
510 -@rm -f $(DESTDIR)$(libdir)/libncurses++w_g.a
511
512clean ::
513 -rm -f ../lib/libncurses++w_g.a
514
515mostlyclean::
516 -rm -f $(DEBUG_OBJS)
517
518# generated by mk-2nd.awk
519# model: obj_g
520# MODEL: DEBUG
521# echo: yes
522# subset: ticlib+termlib+ext_tinfo+base+widechar+ext_funcs
523# crenames: yes
524# cxxrenames: yes
525# traces: DEBUG
526# srcdir: .
527
528../obj_g/cursesf$o : $(srcdir)/cursesf.cc \
529 $(internal_h) \
530 $(cursesf_h) \
531 $(cursesapp_h)
532 $(LIBTOOL_COMPILE) $(CXX) $(CFLAGS_DEBUG) -c ../c++/cursesf.cc -o ../obj_g/cursesf$o
533
534../obj_g/cursesm$o : $(srcdir)/cursesm.cc \
535 $(internal_h) \
536 $(cursesm_h) \
537 $(cursesapp_h)
538 $(LIBTOOL_COMPILE) $(CXX) $(CFLAGS_DEBUG) -c ../c++/cursesm.cc -o ../obj_g/cursesm$o
539
540../obj_g/cursesw$o : $(srcdir)/cursesw.cc \
541 $(internal_h) \
542 $(cursesw_h)
543 $(LIBTOOL_COMPILE) $(CXX) $(CFLAGS_DEBUG) -c ../c++/cursesw.cc -o ../obj_g/cursesw$o
544
545../obj_g/cursespad$o : $(srcdir)/cursespad.cc \
546 $(internal_h) \
547 $(cursesw_h)
548 $(LIBTOOL_COMPILE) $(CXX) $(CFLAGS_DEBUG) -c ../c++/cursespad.cc -o ../obj_g/cursespad$o
549
550../obj_g/cursesp$o : $(srcdir)/cursesp.cc \
551 $(internal_h) \
552 $(cursesp_h)
553 $(LIBTOOL_COMPILE) $(CXX) $(CFLAGS_DEBUG) -c ../c++/cursesp.cc -o ../obj_g/cursesp$o
554
555../obj_g/cursslk$o : $(srcdir)/cursslk.cc \
556 $(internal_h) \
557 $(cursesapp_h)
558 $(LIBTOOL_COMPILE) $(CXX) $(CFLAGS_DEBUG) -c ../c++/cursslk.cc -o ../obj_g/cursslk$o
559
560../obj_g/cursesapp$o : $(srcdir)/cursesapp.cc \
561 $(internal_h) \
562 $(cursesapp_h)
563 $(LIBTOOL_COMPILE) $(CXX) $(CFLAGS_DEBUG) -c ../c++/cursesapp.cc -o ../obj_g/cursesapp$o
564
565../obj_g/cursesmain$o : $(srcdir)/cursesmain.cc \
566 $(internal_h) \
567 $(cursesapp_h) \
568 $(INCDIR)/nc_alloc.h
569 $(LIBTOOL_COMPILE) $(CXX) $(CFLAGS_DEBUG) -c ../c++/cursesmain.cc -o ../obj_g/cursesmain$o
570
571
572# generated by mk-hdr.awk
573# subset: ticlib+termlib+ext_tinfo+base+widechar+ext_funcs
574# compat: yes
575
576${INCLUDEDIR} :
577 mkdir -p $@
578
579install \
580install.libs \
581install.includes :: ${AUTO_SRC} ${INCLUDEDIR} \
582 $(srcdir)/cursesapp.h \
583 $(srcdir)/cursesf.h \
584 $(srcdir)/cursesm.h \
585 $(srcdir)/cursesp.h \
586 $(srcdir)/cursesw.h \
587 $(srcdir)/cursslk.h \
588 etip.h
589 @ (cd ${INCLUDEDIR} && rm -f cursesapp.h) ; ../headers.sh ${INSTALL_DATA} ${INCLUDEDIR} ${srcdir} $(srcdir)/cursesapp.h
590 @ (cd ${INCLUDEDIR} && rm -f cursesf.h) ; ../headers.sh ${INSTALL_DATA} ${INCLUDEDIR} ${srcdir} $(srcdir)/cursesf.h
591 @ (cd ${INCLUDEDIR} && rm -f cursesm.h) ; ../headers.sh ${INSTALL_DATA} ${INCLUDEDIR} ${srcdir} $(srcdir)/cursesm.h
592 @ (cd ${INCLUDEDIR} && rm -f cursesp.h) ; ../headers.sh ${INSTALL_DATA} ${INCLUDEDIR} ${srcdir} $(srcdir)/cursesp.h
593 @ (cd ${INCLUDEDIR} && rm -f cursesw.h) ; ../headers.sh ${INSTALL_DATA} ${INCLUDEDIR} ${srcdir} $(srcdir)/cursesw.h
594 @ (cd ${INCLUDEDIR} && rm -f cursslk.h) ; ../headers.sh ${INSTALL_DATA} ${INCLUDEDIR} ${srcdir} $(srcdir)/cursslk.h
595 @ (cd ${INCLUDEDIR} && rm -f etip.h) ; ../headers.sh ${INSTALL_DATA} ${INCLUDEDIR} ${srcdir} etip.h
596
597uninstall \
598uninstall.libs \
599uninstall.includes ::
600 -@ (cd ${INCLUDEDIR} && rm -f cursesapp.h)
601 -@ (cd ${INCLUDEDIR} && rm -f cursesf.h)
602 -@ (cd ${INCLUDEDIR} && rm -f cursesm.h)
603 -@ (cd ${INCLUDEDIR} && rm -f cursesp.h)
604 -@ (cd ${INCLUDEDIR} && rm -f cursesw.h)
605 -@ (cd ${INCLUDEDIR} && rm -f cursslk.h)
606 -@ (cd ${INCLUDEDIR} && rm -f etip.h)