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