* gdb.texinfo (Command Files): Mention -x, use @enumerate for
[deliverable/binutils-gdb.git] / gdb / tui / Makefile.in
CommitLineData
c906108c
SS
1# Copyright 1998 Free Software Foundation, Inc.
2
3# This file is part of GDB.
4
5# This program is free software; you can redistribute it and/or modify
6# it under the terms of the GNU General Public License as published by
7# the Free Software Foundation; either version 2 of the License, or
8# (at your option) any later version.
9#
10# This program is distributed in the hope that it will be useful,
11# but WITHOUT ANY WARRANTY; without even the implied warranty of
12# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13# GNU General Public License for more details.
14#
15# You should have received a copy of the GNU General Public License
16# along with this program; if not, write to the Free Software
17# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18
19all: libtui.a
20
21srcdir=@srcdir@
22VPATH = @srcdir@
23
24SHELL = @SHELL@
25
26CC=@CC@
27CFLAGS=@CFLAGS@
28AR=@AR@
29RANLIB=@RANLIB@
30
31# Host and target-dependent makefile fragments come in here.
32@host_makefile_frag@
33@target_makefile_frag@
34# End of host and target-dependent makefile fragments
35
36# Where is our "include" directory? Typically $(srcdir)/../include.
37# This is essentially the header file directory for the library
38# routines in libiberty.
39INCLUDE_DIR = $(srcdir)/../../include
40INCLUDE_CFLAGS = -I$(INCLUDE_DIR)
41
42# Configured by the --with-mmalloc option to configure.
43MMALLOC = @MMALLOC@
44MMALLOC_CFLAGS = @MMALLOC_CFLAGS@
45
46# Where is the BFD library? Typically in ../bfd.
47BFD_DIR = ../../bfd
48BFD_SRC = $(srcdir)/$(BFD_DIR)
49BFD_CFLAGS = -I$(BFD_DIR) -I$(BFD_SRC)
50
51# Where is the READLINE library? Typically in ../readline.
52READLINE_DIR = ../../readline
53READLINE_SRC = $(srcdir)/$(READLINE_DIR)
54READLINE_CFLAGS = -I$(READLINE_SRC)
55
56# Where is the INTL library? Typically in ../intl.
57INTL_DIR = ../../intl
58INTL_SRC = $(srcdir)/$(INTL_DIR)
59INTL_CFLAGS = -I$(INTL_DIR) -I$(INTL_SRC)
60
61# Where is the TCL library? Typically in ../tcl.
62TCL_CFLAGS = @TCLHDIR@
63
64# Where is the TK library? Typically in ../tk.
65TK_CFLAGS = @TKHDIR@ @TK_BUILD_INCLUDES@
66
67# Where is Itcl? Typically in ../itcl.
68ITCL_CFLAGS = @ITCLHDIR@
69
70# Where is Tix? Typically in ../tix.
71TIX_CFLAGS = @TIXHDIR@
72
73X11_CFLAGS = @TK_XINCLUDES@
74
75ENABLE_IDE= @ENABLE_IDE@
76
77GUI_CFLAGS_X = -I$(srcdir)/../../libgui/src
78
79IDE_CFLAGS_X = -I$(srcdir)/../../libidetcl/src -I$(srcdir)/../../libide/src \
80 `if [ x"$(ENABLE_IDE)" != x ] ; then \
81 echo -DIDE -I$(srcdir)/../../ilu/runtime/mainloop;\
82 fi`
83
84IDE_CFLAGS=$(GUI_CFLAGS_X) $(IDE_CFLAGS_X)
85
86ENABLE_CFLAGS= @ENABLE_CFLAGS@
87
88# -I. for config files.
89# -I$(srcdir) for gdb internal headers and possibly for gnu-regex.h also.
90# -I$(srcdir)/config for more generic config files.
91
92# It is also possible that you will need to add -I/usr/include/sys if
93# your system doesn't have fcntl.h in /usr/include (which is where it
94# should be according to Posix).
95DEFS = @DEFS@
96GDB_CFLAGS = -I. -I.. -I$(srcdir) -I$(srcdir)/.. -I$(srcdir)/../config $(DEFS)
97
98# M{H,T}_CFLAGS, if defined, have host- and target-dependent CFLAGS
99# from the config directory.
100GLOBAL_CFLAGS = $(MT_CFLAGS) $(MH_CFLAGS)
101#PROFILE_CFLAGS = -pg
102
103# INTERNAL_CFLAGS is the aggregate of all other *CFLAGS macros.
104INTERNAL_CFLAGS = $(CFLAGS) $(GLOBAL_CFLAGS) $(PROFILE_CFLAGS) \
105 $(GDB_CFLAGS) $(READLINE_CFLAGS) $(BFD_CFLAGS) \
106 $(MMALLOC_CFLAGS) $(INCLUDE_CFLAGS) $(INTL_CFLAGS) \
107 $(ENABLE_CFLAGS)
108
109HEADERS = tuiIO.h tuiData.h tuiGeneralWin.h tuiLayout.h tuiStack.h \
110 tuiSource.h tuiCommand.h tuiWin.h tuiDisassem.h \
111 tuiSourceWin.h tuiRegs.h tuiDataWin.h
112
113SOURCES = tui.c tuiData.c tuiSource.c tuiStack.c tuiIO.c \
114 tuiGeneralWin.c tuiLayout.c tuiWin.c tuiCommand.c \
115 tuiDisassem.c tuiSourceWin.c tuiRegs.c tuiDataWin.c
116
117OBJECTS = tui.o tuiData.o tuiSource.o tuiStack.o tuiIO.o \
118 tuiGeneralWin.o tuiLayout.o tuiWin.o tuiCommand.o \
119 tuiDisassem.o tuiSourceWin.o tuiRegs.o tuiDataWin.o \
120 tuiInit.o
121
122
123# Prevent Sun make from putting in the machine type. Setting
124# TARGET_ARCH to nothing works for SunOS 3, 4.0, but not for 4.1.
125.c.o:
126 $(CC) -c $(INTERNAL_CFLAGS) $<
127.SUFFIXES: .cpp
128.c.cpp:
129 $(CC) -E $(INTERNAL_CFLAGS) $< > $@
130
131libtui.a: $(OBJECTS)
132 rm -f libtui.a
133 $(AR) rc libtui.a $(OBJECTS)
134 $(RANLIB) libtui.a
135
136tui.o: tui.c tui.h tuiData.h tuiLayout.h tuiIO.h tuiRegs.h tuiWin.h
137tuiCommand.o: tui.h tuiData.h tuiWin.h tuiIO.h
138tuiData.o: tui.h tuiData.h
139tuiDataWin.o: tui.h tuiData.h tuiRegs.h
140tuiDisassem.o: tui.h tuiData.h tuiLayout.h tuiSourceWin.h tuiStack.h
141tuiGeneralWin.o: tui.h tuiData.h tuiGeneralWin.h
142tuiIO.o: tui.h tuiData.h tuiIO.h tuiCommand.h tuiWin.h
143tuiLayout.o: tui.h tuiData.h tuiGeneralWin.h tuiStack.h tuiRegs.h \
144 tuiDisassem.h
145tuiRegs.o: tui.h tuiData.h tuiLayout.h tuiWin.h
146tuiSource.o: tui.h tuiData.h tuiStack.h tuiSourceWin.h tuiSource.h
147tuiSourceWin.o: tui.h tuiData.h tuiStack.h tuiSourceWin.h tuiSource.h \
148 tuiDisassem.h
149tuiStack.o: tui.h tuiData.h tuiStack.h tuiSourceWin.h
150tuiWin.o: tui.h tuiData.h tuiGeneralWin.h tuiStack.h tuiSourceWin.h \
151 tuiDataWin.h
152
153tuiInit.o: tuiInit.c
154tuiInit.c: $(SOURCES)
155 @echo Making tuiInit.c
156 @rm -f init.c-tmp
157 @echo '/* Do not modify this file. */' >init.c-tmp
158 @echo '/* It is created automatically by the Makefile. */'>>init.c-tmp
159 @echo '#include "ansidecl.h"' >>init.c-tmp
160 @echo 'extern void initialize_tui_files PARAMS ((void));' >>init.c-tmp
161 @echo 'void initialize_tui_files PARAMS ((void)) {' >>init.c-tmp
162 @-( cd $(srcdir) ; grep '^_initialize_[a-z_0-9A-Z]* *(' $(SOURCES) ) 2>/dev/null \
163 | sed -e 's/^.*://' -e 's/^\([a-z_0-9A-Z]*\).*/ {extern void \1 PARAMS ((void)); \1 ();}/' >>init.c-tmp
164 @echo '}' >>init.c-tmp
165 @mv init.c-tmp tuiInit.c
166
784f35f9
AC
167clean mostlyclean:
168 -rm -f *.o *.a
169
170distclean maintainer-clean realclean: clean
171 -rm -f Makefile config.log config.cache
This page took 0.062141 seconds and 4 git commands to generate.