merge from trunk
[bpt/emacs.git] / lwlib / Makefile.in
1 # Copyright (C) 1992, 1993 Lucid, Inc.
2 # Copyright (C) 1994, 2001, 2002, 2003, 2004, 2005, 2006,
3 # 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
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.
24 # and set up to be configured by ../configure.
25
26 srcdir=@srcdir@
27 VPATH=@srcdir@
28 C_SWITCH_X_SITE=@C_SWITCH_X_SITE@
29 C_SWITCH_SYSTEM=@c_switch_system@
30 C_SWITCH_MACHINE=@c_switch_machine@
31
32 CC=@CC@
33 CFLAGS=@CFLAGS@
34 CPP=@CPP@
35 CPPFLAGS=@CPPFLAGS@
36 LN_S=@LN_S@
37 RANLIB=@RANLIB@
38 # See below--@X_TOOLKIT_TYPE@ is used below.
39 USE_X_TOOLKIT=@X_TOOLKIT_TYPE@
40
41 TOP = .
42
43 AR = ar cq
44
45 LN = ln -s
46 RM = rm -f
47
48 LUCID_OBJS = lwlib-Xlw.o xlwmenu.o lwlib-Xaw.o
49 MOTIF_OBJS = lwlib-Xm.o
50
51 TOOLKIT_DEFINES =
52 TOOLKIT_OBJS = $(@X_TOOLKIT_TYPE@_OBJS)
53
54 OBJS = lwlib.o $(TOOLKIT_OBJS) lwlib-utils.o
55
56 # ../src is needed to find config.h.
57 ALL_CFLAGS= $(C_SWITCH_SYSTEM) $(C_SWITCH_X_SITE) \
58 $(C_SWITCH_X_SYSTEM) $(C_SWITCH_MACHINE) $(CFLAGS) \
59 -DHAVE_CONFIG_H -Demacs -I. -I../src -I${srcdir} -I${srcdir}/../src
60
61 .c.o:
62 $(CC) -c $(CPPFLAGS) ${ALL_CFLAGS} $<
63
64 all:: liblw.a
65
66 liblw.a: $(OBJS)
67 $(RM) $@
68 $(AR) $@ $(OBJS)
69 $(RANLIB) $@
70
71 # Depend on Makefile so that we recompile if TOOLKIT_DEFINES changes.
72 lwlib.o: $(srcdir)/lwlib.c Makefile
73 $(CC) -c $(CPPFLAGS) $(TOOLKIT_DEFINES) $(ALL_CFLAGS) $(srcdir)/lwlib.c
74
75 lwlib-utils.o: lwlib-utils.c lwlib-utils.h
76 lwlib.o: lwlib.c lwlib.h lwlib-int.h lwlib-Xaw.h lwlib-Xlw.h
77 lwlib-Xlw.o: lwlib-Xlw.c lwlib.h lwlib-int.h lwlib-Xlw.h
78 lwlib-Xaw.o: lwlib-Xaw.c lwlib-Xaw.h lwlib.h lwlib-int.h
79 lwlib-Xm.o: lwlib-Xm.c lwlib-Xm.h lwlib.h lwlib-int.h lwlib-utils.h
80 xlwmenu.o: xlwmenu.c xlwmenu.h lwlib.h xlwmenuP.h
81
82 mostlyclean:
83 $(RM) *.o core errs ,* *.a .emacs_* make.log MakeOut \#*
84
85 clean: mostlyclean
86 distclean: clean
87 $(RM) Makefile
88 maintainer-clean: distclean
89 $(RM) TAGS
90
91 TAGS:
92 ../lib-src/etags $(srcdir)/*.[ch]
93 tags: TAGS
94 .PHONY: tags