* files.el (directory-files-no-dot-files-regexp): Doc fix (bug#6298).
[emacs.git] / lwlib / Makefile.in
blobeac091744510ec8067578e1e45158dd178539411
1 # Copyright (C) 1992, 1993 Lucid, Inc.
2 # Copyright (C) 1994, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008,
3 # 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.
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.
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.
23 # This was taken from the output of Imake using Lucid's Imakefile.
24 # and set up to be configured by ../configure.
26 srcdir=@srcdir@
27 VPATH=@srcdir@
28 C_SWITCH_X_SITE=@C_SWITCH_X_SITE@
29 C_SWITCH_X_SYSTEM=@C_SWITCH_X_SYSTEM@
30 C_SWITCH_SYSTEM=@C_SWITCH_SYSTEM@
31 C_SWITCH_MACHINE=@C_SWITCH_MACHINE@
33 CC=@CC@
34 CFLAGS=@CFLAGS@
35 CPPFLAGS=@CPPFLAGS@
36 RANLIB=@RANLIB@
37 # See below--@X_TOOLKIT_TYPE@ is used below.
38 USE_X_TOOLKIT=@X_TOOLKIT_TYPE@
40 AR = ar cq
41 RM = rm -f
43 LUCID_OBJS = lwlib-Xlw.o xlwmenu.o lwlib-Xaw.o
44 MOTIF_OBJS = lwlib-Xm.o
46 TOOLKIT_DEFINES =
47 TOOLKIT_OBJS = $(@X_TOOLKIT_TYPE@_OBJS)
49 OBJS = lwlib.o $(TOOLKIT_OBJS) lwlib-utils.o
51 # ../src is needed to find config.h.
52 ALL_CFLAGS= $(C_SWITCH_SYSTEM) $(C_SWITCH_X_SITE) \
53 $(C_SWITCH_X_SYSTEM) $(C_SWITCH_MACHINE) $(CFLAGS) \
54 -DHAVE_CONFIG_H -Demacs -I. -I../src -I${srcdir} -I${srcdir}/../src
56 .c.o:
57 $(CC) -c $(CPPFLAGS) ${ALL_CFLAGS} $<
59 all:: liblw.a
61 liblw.a: $(OBJS)
62 $(RM) $@
63 $(AR) $@ $(OBJS)
64 $(RANLIB) $@
66 # Depend on Makefile so that we recompile if TOOLKIT_DEFINES changes.
67 lwlib.o: $(srcdir)/lwlib.c Makefile
68 $(CC) -c $(CPPFLAGS) $(TOOLKIT_DEFINES) $(ALL_CFLAGS) $(srcdir)/lwlib.c
70 lwlib-utils.o: lwlib-utils.c lwlib-utils.h
71 lwlib.o: lwlib.c lwlib.h lwlib-int.h lwlib-Xaw.h lwlib-Xlw.h
72 lwlib-Xlw.o: lwlib-Xlw.c lwlib.h lwlib-int.h lwlib-Xlw.h
73 lwlib-Xaw.o: lwlib-Xaw.c lwlib-Xaw.h lwlib.h lwlib-int.h
74 lwlib-Xm.o: lwlib-Xm.c lwlib-Xm.h lwlib.h lwlib-int.h lwlib-utils.h
75 xlwmenu.o: xlwmenu.c xlwmenu.h lwlib.h xlwmenuP.h
77 mostlyclean:
78 $(RM) *.o core liblw.a \#*
80 clean: mostlyclean
81 distclean: clean
82 $(RM) Makefile
83 maintainer-clean: distclean
84 $(RM) TAGS
86 TAGS:
87 ../lib-src/etags $(srcdir)/*.[ch]
88 tags: TAGS
89 .PHONY: tags