1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-28 07:45:00 +00:00
emacs/lwlib/Makefile.in

99 lines
2.8 KiB
Makefile
Raw Normal View History

2007-02-27 03:06:23 +00:00
# Copyright (C) 1992, 1993 Lucid, Inc.
# Copyright (C) 1994, 2001-2011 Free Software Foundation, Inc.
2007-02-27 03:06:23 +00:00
#
# This file is part of the Lucid Widget Library.
#
# The Lucid Widget Library is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 1, or (at your option)
# any later version.
#
# The Lucid Widget Library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with GNU Emacs; see the file COPYING. If not, write to
# the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
# Boston, MA 02110-1301, USA.
# This was taken from the output of Imake using Lucid's Imakefile.
1994-01-21 16:22:40 +00:00
# and set up to be configured by ../configure.
1994-01-18 23:47:41 +00:00
1994-01-19 17:21:49 +00:00
srcdir=@srcdir@
VPATH=@srcdir@
@SET_MAKE@
1994-01-19 17:21:49 +00:00
C_SWITCH_X_SITE=@C_SWITCH_X_SITE@
C_SWITCH_X_SYSTEM=@C_SWITCH_X_SYSTEM@
C_SWITCH_SYSTEM=@C_SWITCH_SYSTEM@
C_SWITCH_MACHINE=@C_SWITCH_MACHINE@
C_WARNINGS_SWITCH = @C_WARNINGS_SWITCH@
PROFILING_CFLAGS = @PROFILING_CFLAGS@
1994-01-18 23:47:41 +00:00
1994-01-19 17:21:49 +00:00
CC=@CC@
CFLAGS=@CFLAGS@
CPPFLAGS=@CPPFLAGS@
1995-08-16 14:20:19 +00:00
RANLIB=@RANLIB@
1994-01-20 13:16:53 +00:00
# See below--@X_TOOLKIT_TYPE@ is used below.
1994-01-19 17:21:49 +00:00
USE_X_TOOLKIT=@X_TOOLKIT_TYPE@
1994-01-18 23:47:41 +00:00
AR = ar cq
RM = rm -f
1994-01-18 23:47:41 +00:00
LUCID_OBJS = lwlib-Xlw.o xlwmenu.o lwlib-Xaw.o
MOTIF_OBJS = lwlib-Xm.o
1994-01-18 23:47:41 +00:00
TOOLKIT_DEFINES =
TOOLKIT_OBJS = $(@X_TOOLKIT_TYPE@_OBJS)
1994-01-19 17:21:49 +00:00
OBJS = lwlib.o $(TOOLKIT_OBJS) lwlib-utils.o
1994-01-18 23:47:41 +00:00
1995-05-04 20:01:13 +00:00
# ../src is needed to find config.h.
ALL_CFLAGS= $(C_SWITCH_SYSTEM) $(C_SWITCH_X_SITE) \
$(C_SWITCH_X_SYSTEM) $(C_SWITCH_MACHINE) \
$(C_WARNINGS_SWITCH) $(PROFILING_CFLAGS) $(CFLAGS) \
-DHAVE_CONFIG_H -Demacs -I. -I../src -I$(srcdir) -I$(srcdir)/../src
1994-01-18 23:47:41 +00:00
.c.o:
$(CC) -c $(CPPFLAGS) $(ALL_CFLAGS) $<
1994-01-18 23:47:41 +00:00
all:: liblw.a
liblw.a: $(OBJS)
$(RM) $@
$(AR) $@ $(OBJS)
$(RANLIB) $@
1994-01-18 23:47:41 +00:00
## lisp.h includes this.
globals = ../src/globals.h
$(globals):
cd ../src; $(MAKE) $(MFLAGS) globals.h
1995-04-07 05:46:47 +00:00
# Depend on Makefile so that we recompile if TOOLKIT_DEFINES changes.
lwlib.o: $(srcdir)/lwlib.c Makefile
$(CC) -c $(CPPFLAGS) $(TOOLKIT_DEFINES) $(ALL_CFLAGS) $(srcdir)/lwlib.c
1994-01-18 23:47:41 +00:00
lwlib-utils.o: $(globals) lwlib-utils.c lwlib-utils.h
lwlib.o: $(globals) lwlib.c lwlib.h lwlib-int.h lwlib-Xaw.h lwlib-Xlw.h
lwlib-Xlw.o: $(globals) lwlib-Xlw.c lwlib.h lwlib-int.h lwlib-Xlw.h
lwlib-Xaw.o: $(globals) lwlib-Xaw.c lwlib-Xaw.h lwlib.h lwlib-int.h
lwlib-Xm.o: $(globals) lwlib-Xm.c lwlib-Xm.h lwlib.h lwlib-int.h lwlib-utils.h
xlwmenu.o: $(globals) xlwmenu.c xlwmenu.h lwlib.h xlwmenuP.h
1994-01-18 23:47:41 +00:00
1994-01-19 17:21:49 +00:00
mostlyclean:
$(RM) *.o core liblw.a \#*
1994-01-18 23:47:41 +00:00
1994-01-19 17:21:49 +00:00
clean: mostlyclean
distclean: clean
$(RM) Makefile
maintainer-clean: distclean
$(RM) TAGS
1994-01-18 23:47:41 +00:00
TAGS:
../lib-src/etags $(srcdir)/*.[ch]
1996-03-29 14:52:56 +00:00
tags: TAGS
.PHONY: tags