76175
|
1 # Copyright (C) 1992, 1993 Lucid, Inc.
|
|
2 # Copyright (C) 1994, 2001, 2002, 2003, 2004, 2005, 2006,
|
|
3 # 2007 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.
|
5652
|
24 # and set up to be configured by ../configure.
|
5626
|
25
|
5636
|
26 srcdir=@srcdir@
|
|
27 VPATH=@srcdir@
|
|
28 C_SWITCH_X_SITE=@C_SWITCH_X_SITE@
|
5626
|
29
|
5636
|
30 CC=@CC@
|
|
31 CFLAGS=@CFLAGS@
|
|
32 CPP=@CPP@
|
50740
9212cd524014
Make things function properly in case both LessTif and Open Motif are installed.
Juanma Barranquero <lekktu@gmail.com>
diff
changeset
|
33 CPPFLAGS=@CPPFLAGS@
|
5636
|
34 LN_S=@LN_S@
|
12865
|
35 RANLIB=@RANLIB@
|
5639
|
36 # See below--@X_TOOLKIT_TYPE@ is used below.
|
5636
|
37 USE_X_TOOLKIT=@X_TOOLKIT_TYPE@
|
5626
|
38
|
|
39 TOP = .
|
|
40
|
|
41 AR = ar cq
|
|
42
|
|
43 LN = ln -s
|
|
44 RM = rm -f
|
|
45
|
6306
|
46 LUCID_OBJS = lwlib-Xlw.o xlwmenu.o lwlib-Xaw.o
|
5626
|
47 MOTIF_OBJS = lwlib-Xm.o
|
|
48
|
5639
|
49 TOOLKIT_DEFINES = -DUSE_$(USE_X_TOOLKIT)
|
|
50 TOOLKIT_OBJS = $(@X_TOOLKIT_TYPE@_OBJS)
|
5626
|
51
|
5636
|
52 OBJS = lwlib.o $(TOOLKIT_OBJS) lwlib-utils.o
|
|
53
|
11686
|
54 # ../src is needed to find config.h.
|
5636
|
55 ALL_CFLAGS= $(C_SWITCH_SITE) $(C_SWITCH_SYSTEM) $(C_SWITCH_X_SITE) \
|
50740
9212cd524014
Make things function properly in case both LessTif and Open Motif are installed.
Juanma Barranquero <lekktu@gmail.com>
diff
changeset
|
56 $(C_SWITCH_X_SYSTEM) $(C_SWITCH_MACHINE) $(CFLAGS) \
|
44919
|
57 -DHAVE_CONFIG_H -Demacs -I. -I../src -I${srcdir} -I${srcdir}/../src
|
5626
|
58
|
|
59 .c.o:
|
50740
9212cd524014
Make things function properly in case both LessTif and Open Motif are installed.
Juanma Barranquero <lekktu@gmail.com>
diff
changeset
|
60 $(CC) -c $(CPPFLAGS) ${ALL_CFLAGS} $<
|
5626
|
61
|
|
62 all:: liblw.a
|
|
63
|
|
64 liblw.a: $(OBJS)
|
|
65 $(RM) $@
|
|
66 $(AR) $@ $(OBJS)
|
28058
|
67 $(RANLIB) $@
|
5626
|
68
|
11246
|
69 # Depend on Makefile so that we recompile if TOOLKIT_DEFINES changes.
|
|
70 lwlib.o: $(srcdir)/lwlib.c Makefile
|
73558
|
71 $(CC) -c $(CPPFLAGS) $(TOOLKIT_DEFINES) $(ALL_CFLAGS) $(srcdir)/lwlib.c
|
5626
|
72
|
22871
|
73 lwlib-utils.o: lwlib-utils.c lwlib-utils.h
|
29464
|
74 lwlib.o: lwlib.c lwlib.h lwlib-int.h lwlib-Xaw.h lwlib-Xlw.h
|
|
75 lwlib-Xlw.o: lwlib-Xlw.c lwlib.h lwlib-int.h lwlib-Xlw.h
|
|
76 lwlib-Xaw.o: lwlib-Xaw.c lwlib-Xaw.h lwlib.h lwlib-int.h
|
|
77 lwlib-Xm.o: lwlib-Xm.c lwlib-Xm.h lwlib.h lwlib-int.h lwlib-utils.h
|
14882
|
78 xlwmenu.o: xlwmenu.c xlwmenu.h lwlib.h xlwmenuP.h
|
5626
|
79
|
5636
|
80 mostlyclean:
|
59100
|
81 $(RM) *.o core errs ,* *.a .emacs_* make.log MakeOut \#*
|
5626
|
82
|
5636
|
83 clean: mostlyclean
|
|
84 distclean: clean
|
76223
|
85 $(RM) Makefile
|
10685
|
86 maintainer-clean: distclean
|
76223
|
87 $(RM) TAGS
|
5626
|
88
|
14905
|
89 TAGS:
|
44686
|
90 ../lib-src/etags $(srcdir)/*.[ch]
|
14913
|
91 tags: TAGS
|
|
92 .PHONY: tags
|