* net/rcirc.el (rcirc-send-ctcp): Remove spurious arg to `format'.
[bpt/emacs.git] / lwlib / Makefile.in
CommitLineData
4ad9cddc 1# Copyright (C) 1992, 1993 Lucid, Inc.
73b0cd50 2# Copyright (C) 1994, 2001-2011 Free Software Foundation, Inc.
4ad9cddc
GM
3#
4# This file is part of the Lucid Widget Library.
5#
6# The Lucid Widget Library is free software; you can redistribute it and/or
7# modify it under the terms of the GNU General Public License as published by
8# the Free Software Foundation; either version 1, or (at your option)
9# any later version.
10#
11# The Lucid Widget Library is distributed in the hope that it will be useful,
12# but WITHOUT ANY WARRANTY; without even the implied warranty of
13# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14# GNU General Public License for more details.
15#
16# You should have received a copy of the GNU General Public License
17# along with GNU Emacs; see the file COPYING. If not, write to
18# the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
19# Boston, MA 02110-1301, USA.
20
21
22# This was taken from the output of Imake using Lucid's Imakefile.
ddd6d613 23# and set up to be configured by ../configure.
07bf635f 24
ec171d2e
RS
25srcdir=@srcdir@
26VPATH=@srcdir@
7bd04bb4 27@SET_MAKE@
ec171d2e 28C_SWITCH_X_SITE=@C_SWITCH_X_SITE@
ed6281b0 29C_SWITCH_X_SYSTEM=@C_SWITCH_X_SYSTEM@
e9bcdbf7
GM
30C_SWITCH_SYSTEM=@C_SWITCH_SYSTEM@
31C_SWITCH_MACHINE=@C_SWITCH_MACHINE@
e6cfa7c3
AS
32C_WARNINGS_SWITCH = @C_WARNINGS_SWITCH@
33PROFILING_CFLAGS = @PROFILING_CFLAGS@
07bf635f 34
ec171d2e
RS
35CC=@CC@
36CFLAGS=@CFLAGS@
93a16fa8 37CPPFLAGS=@CPPFLAGS@
a6578b63 38RANLIB=@RANLIB@
60724eab 39# See below--@X_TOOLKIT_TYPE@ is used below.
ec171d2e 40USE_X_TOOLKIT=@X_TOOLKIT_TYPE@
07bf635f 41
e3cf0cde
GM
42AR = ar cq
43RM = rm -f
07bf635f 44
e3cf0cde
GM
45LUCID_OBJS = lwlib-Xlw.o xlwmenu.o lwlib-Xaw.o
46MOTIF_OBJS = lwlib-Xm.o
07bf635f 47
73d798d5 48TOOLKIT_DEFINES =
e3cf0cde 49TOOLKIT_OBJS = $(@X_TOOLKIT_TYPE@_OBJS)
ec171d2e 50
e3cf0cde 51OBJS = lwlib.o $(TOOLKIT_OBJS) lwlib-utils.o
07bf635f 52
b7cffe17 53# ../src is needed to find config.h.
77ccee09 54ALL_CFLAGS= $(C_SWITCH_SYSTEM) $(C_SWITCH_X_SITE) \
e6cfa7c3
AS
55 $(C_SWITCH_X_SYSTEM) $(C_SWITCH_MACHINE) \
56 ${C_WARNINGS_SWITCH} ${PROFILING_CFLAGS} $(CFLAGS) \
9d5ebed1 57 -DHAVE_CONFIG_H -Demacs -I. -I../src -I${srcdir} -I${srcdir}/../src
07bf635f
RS
58
59.c.o:
93a16fa8 60 $(CC) -c $(CPPFLAGS) ${ALL_CFLAGS} $<
07bf635f
RS
61
62all:: liblw.a
63
64liblw.a: $(OBJS)
65 $(RM) $@
66 $(AR) $@ $(OBJS)
7397acc4 67 $(RANLIB) $@
07bf635f 68
7bd04bb4
GM
69## lisp.h includes this.
70globals = ../src/globals.h
71
72$(globals):
73 cd ../src; $(MAKE) $(MFLAGS) globals.h
74
b69328ca
RS
75# Depend on Makefile so that we recompile if TOOLKIT_DEFINES changes.
76lwlib.o: $(srcdir)/lwlib.c Makefile
41c98a5e 77 $(CC) -c $(CPPFLAGS) $(TOOLKIT_DEFINES) $(ALL_CFLAGS) $(srcdir)/lwlib.c
07bf635f 78
7bd04bb4
GM
79lwlib-utils.o: $(globals) lwlib-utils.c lwlib-utils.h
80lwlib.o: $(globals) lwlib.c lwlib.h lwlib-int.h lwlib-Xaw.h lwlib-Xlw.h
81lwlib-Xlw.o: $(globals) lwlib-Xlw.c lwlib.h lwlib-int.h lwlib-Xlw.h
82lwlib-Xaw.o: $(globals) lwlib-Xaw.c lwlib-Xaw.h lwlib.h lwlib-int.h
83lwlib-Xm.o: $(globals) lwlib-Xm.c lwlib-Xm.h lwlib.h lwlib-int.h lwlib-utils.h
84xlwmenu.o: $(globals) xlwmenu.c xlwmenu.h lwlib.h xlwmenuP.h
07bf635f 85
ec171d2e 86mostlyclean:
4b6f0cae 87 $(RM) *.o core liblw.a \#*
07bf635f 88
ec171d2e
RS
89clean: mostlyclean
90distclean: clean
ec4a04a6 91 $(RM) Makefile
26873b72 92maintainer-clean: distclean
ec4a04a6 93 $(RM) TAGS
07bf635f 94
9009ad55 95TAGS:
9040fe8b 96 ../lib-src/etags $(srcdir)/*.[ch]
6180d6be
RS
97tags: TAGS
98.PHONY: tags