]> code.delx.au - gnu-emacs/blob - oldXMenu/Makefile.in
Minor tweaks of copying text properties when padding strings
[gnu-emacs] / oldXMenu / Makefile.in
1 ### @configure_input@
2
3 ## Copyright 1985, 1986, 1987 by the Massachusetts Institute of Technology
4
5 ## Permission to use, copy, modify, and distribute this
6 ## software and its documentation for any purpose and without
7 ## fee is hereby granted, provided that the above copyright
8 ## notice appear in all copies and that both that copyright
9 ## notice and this permission notice appear in supporting
10 ## documentation, and that the name of M.I.T. not be used in
11 ## advertising or publicity pertaining to distribution of the
12 ## software without specific, written prior permission.
13 ## M.I.T. makes no representations about the suitability of
14 ## this software for any purpose. It is provided "as is"
15 ## without express or implied warranty.
16
17
18 ## Copyright (C) 2001-2016 Free Software Foundation, Inc.
19
20 ## This program is free software: you can redistribute it and/or modify
21 ## it under the terms of the GNU General Public License as published by
22 ## the Free Software Foundation, either version 3 of the License, or
23 ## (at your option) any later version.
24
25 ## This program is distributed in the hope that it will be useful,
26 ## but WITHOUT ANY WARRANTY; without even the implied warranty of
27 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
28 ## GNU General Public License for more details.
29
30 ## You should have received a copy of the GNU General Public License
31 ## along with this program. If not, see <http://www.gnu.org/licenses/>.
32
33
34 ### Commentary:
35
36 ## To the best of our knowledge, this code was originally based on the
37 ## X11 oldXMenu Makefile, which was automatically generated from the
38 ## X11 oldXMenu Imakefile. There was no explicit copyright information
39 ## in the Imakefile, therefore we have added the same MIT license as
40 ## used by the rest of the oldXMenu code.
41
42
43 ### Code:
44
45 srcdir=@srcdir@
46 # MinGW CPPFLAGS may use this.
47 abs_top_srcdir=@abs_top_srcdir@
48 VPATH=@srcdir@
49 C_SWITCH_X_SITE=@C_SWITCH_X_SITE@
50 C_SWITCH_SYSTEM=@C_SWITCH_SYSTEM@
51 C_SWITCH_MACHINE=@C_SWITCH_MACHINE@
52 PROFILING_CFLAGS = @PROFILING_CFLAGS@
53 WARN_CFLAGS = @WARN_CFLAGS@
54 WERROR_CFLAGS = @WERROR_CFLAGS@
55
56 EXTRA=insque.o
57 CC=@CC@
58 CFLAGS=@CFLAGS@
59 CPPFLAGS = @CPPFLAGS@
60
61 RM = rm -f
62 RANLIB = @RANLIB@
63 AR = @AR@
64 ARFLAGS = @ARFLAGS@
65 MKDIR_P = @MKDIR_P@
66 EXEEXT = @EXEEXT@
67
68 OBJS = Activate.o \
69 AddPane.o \
70 AddSel.o \
71 ChgPane.o \
72 ChgSel.o \
73 Create.o \
74 DelPane.o \
75 DelSel.o \
76 Destroy.o \
77 Error.o \
78 EvHand.o \
79 FindPane.o \
80 FindSel.o \
81 InsPane.o \
82 InsSel.o \
83 Internal.o \
84 Locate.o \
85 Post.o \
86 Recomp.o \
87 SetAEQ.o \
88 SetFrz.o \
89 SetPane.o \
90 SetSel.o \
91 XDelAssoc.o XLookAssoc.o XCrAssoc.o XDestAssoc.o XMakeAssoc.o
92
93 all: libXMenu11.a
94 .PHONY: all
95
96 # 'make' verbosity.
97 AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
98
99 AM_V_CC = $(am__v_CC_@AM_V@)
100 am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@)
101 am__v_CC_0 = @echo " CC " $@;
102 am__v_CC_1 =
103
104 AM_V_GEN = $(am__v_GEN_@AM_V@)
105 am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
106 am__v_GEN_0 = @echo " GEN " $@;
107 am__v_GEN_1 =
108
109 AM_V_at = $(am__v_at_@AM_V@)
110 am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
111 am__v_at_0 = @
112 am__v_at_1 =
113
114 DEPDIR = deps
115 AUTO_DEPEND = @AUTO_DEPEND@
116
117 ifeq ($(AUTO_DEPEND),yes)
118 DEPFLAGS = -MMD -MF ${DEPDIR}/$*.d -MP
119 MKDEPDIR = ${MKDIR_P} ${DEPDIR}
120 else
121 DEPFLAGS =
122 MKDEPDIR = :
123 endif
124
125 ALL_CFLAGS=$(C_SWITCH_SYSTEM) $(C_SWITCH_MACHINE) \
126 $(C_SWITCH_X_SITE) $(DEPFLAGS) \
127 $(WARN_CFLAGS) $(WERROR_CFLAGS) ${PROFILING_CFLAGS} \
128 $(CPPFLAGS) $(CFLAGS) -DEMACS_BITMAP_FILES \
129 -I../src -I../lib -I${srcdir} -I${srcdir}/../src -I${srcdir}/../lib
130
131 .c.o:
132 @$(MKDEPDIR)
133 $(AM_V_CC)$(CC) -c ${ALL_CFLAGS} $<
134
135 libXMenu11.a: $(OBJS) $(EXTRA)
136 $(AM_V_GEN)$(RM) $@
137 $(AM_V_at)$(AR) $(ARFLAGS) $@ $(OBJS) $(EXTRA)
138 $(AM_V_at)$(RANLIB) $@
139
140 ifeq ($(AUTO_DEPEND),yes)
141 -include $(ALLOBJS:%.o=${DEPDIR}/%.d)
142 else
143 include $(srcdir)/deps.mk
144 endif
145
146 .PHONY: mostlyclean clean distclean bootstrap-clean maintainer-clean
147
148 clean mostlyclean:
149 rm -f libXMenu11.a *.o
150 -rm -rf ${DEPDIR}
151
152 bootstrap-clean maintainer-clean distclean: clean
153 rm -f Makefile
154
155 ETAGS = ../lib-src/etags${EXEEXT}
156
157 ${ETAGS}: FORCE
158 ${MAKE} -C ../lib-src $(notdir $@)
159
160 tagsfiles = $(wildcard ${srcdir}/*.[ch])
161
162 FORCE:
163 .PHONY: tags FORCE
164 tags: TAGS
165 TAGS: ${ETAGS} ${tagsfiles}
166 ${ETAGS} ${tagsfiles}
167
168 ### Makefile.in ends here