1994-01-21 16:22:40 +00:00
|
|
|
# This was taken from the output of Imake
|
|
|
|
# and set up to be configured by ../configure.
|
|
|
|
# Some parts Copyright (c) 1992, 1993 Lucid, Inc.
|
1994-01-18 23:47:41 +00:00
|
|
|
|
1994-01-19 17:21:49 +00:00
|
|
|
srcdir=@srcdir@
|
|
|
|
VPATH=@srcdir@
|
|
|
|
C_SWITCH_X_SITE=@C_SWITCH_X_SITE@
|
1994-01-18 23:47:41 +00:00
|
|
|
|
1994-01-19 17:21:49 +00:00
|
|
|
CC=@CC@
|
|
|
|
CFLAGS=@CFLAGS@
|
|
|
|
CPP=@CPP@
|
|
|
|
LN_S=@LN_S@
|
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
|
|
|
|
|
|
|
TOP = .
|
|
|
|
|
|
|
|
AR = ar cq
|
|
|
|
|
|
|
|
LN = ln -s
|
|
|
|
RM = rm -f
|
|
|
|
|
1994-03-11 15:15:31 +00:00
|
|
|
LUCID_OBJS = lwlib-Xlw.o xlwmenu.o lwlib-Xaw.o
|
1994-01-18 23:47:41 +00:00
|
|
|
MOTIF_OBJS = lwlib-Xm.o
|
|
|
|
|
1994-01-20 13:16:53 +00:00
|
|
|
TOOLKIT_DEFINES = -DUSE_$(USE_X_TOOLKIT)
|
|
|
|
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.
|
1994-01-19 17:21:49 +00:00
|
|
|
ALL_CFLAGS= $(C_SWITCH_SITE) $(C_SWITCH_SYSTEM) $(C_SWITCH_X_SITE) \
|
|
|
|
$(C_SWITCH_X_SYSTEM) $(C_SWITCH_MACHINE) $(CPPFLAGS) $(CFLAGS) \
|
2002-04-28 13:35:36 +00:00
|
|
|
-DHAVE_CONFIG_H -Demacs -I. -I../src -I${srcdir} -I${srcdir}/../src
|
1994-01-18 23:47:41 +00:00
|
|
|
|
|
|
|
.c.o:
|
1994-01-19 17:21:49 +00:00
|
|
|
$(CC) -c ${ALL_CFLAGS} $<
|
1994-01-18 23:47:41 +00:00
|
|
|
|
|
|
|
all:: liblw.a
|
|
|
|
|
|
|
|
liblw.a: $(OBJS)
|
|
|
|
$(RM) $@
|
|
|
|
$(AR) $@ $(OBJS)
|
2000-03-08 19:10:01 +00:00
|
|
|
$(RANLIB) $@
|
1994-01-18 23:47:41 +00:00
|
|
|
|
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
|
1994-02-19 20:53:26 +00:00
|
|
|
$(CC) -c $(TOOLKIT_DEFINES) $(ALL_CFLAGS) $(srcdir)/lwlib.c
|
1994-01-18 23:47:41 +00:00
|
|
|
|
1998-08-02 00:29:05 +00:00
|
|
|
lwlib-utils.o: lwlib-utils.c lwlib-utils.h
|
2000-06-06 14:05:40 +00:00
|
|
|
lwlib.o: lwlib.c lwlib.h lwlib-int.h lwlib-Xaw.h lwlib-Xlw.h
|
|
|
|
lwlib-Xlw.o: lwlib-Xlw.c lwlib.h lwlib-int.h lwlib-Xlw.h
|
|
|
|
lwlib-Xaw.o: lwlib-Xaw.c lwlib-Xaw.h lwlib.h lwlib-int.h
|
|
|
|
lwlib-Xm.o: lwlib-Xm.c lwlib-Xm.h lwlib.h lwlib-int.h lwlib-utils.h
|
1996-03-26 18:46:04 +00:00
|
|
|
xlwmenu.o: 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 errs ,* *~ *.a .emacs_* make.log MakeOut \#*
|
1994-01-18 23:47:41 +00:00
|
|
|
|
1994-01-19 17:21:49 +00:00
|
|
|
clean: mostlyclean
|
|
|
|
distclean: clean
|
1995-02-07 23:55:01 +00:00
|
|
|
maintainer-clean: distclean
|
1994-01-18 23:47:41 +00:00
|
|
|
|
1996-03-28 18:39:26 +00:00
|
|
|
TAGS:
|
2002-04-19 10:35:02 +00:00
|
|
|
../lib-src/etags $(srcdir)/*.[ch]
|
1996-03-29 14:52:56 +00:00
|
|
|
tags: TAGS
|
|
|
|
.PHONY: tags
|