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@
|
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
|
|
|
|
RANLIB = ranlib
|
|
|
|
RM = rm -f
|
|
|
|
|
|
|
|
LUCID_SRCS = lwlib-Xlw.c xlwmenu.c
|
|
|
|
LUCID_OBJS = lwlib-Xlw.o xlwmenu.o
|
|
|
|
MOTIF_SRCS = lwlib-Xm.c
|
|
|
|
MOTIF_OBJS = lwlib-Xm.o
|
1994-01-19 17:21:49 +00:00
|
|
|
OLIT_SRCS = lwlib-Xol.c lwlib-Xolmb.c
|
|
|
|
OLIT_OBJS = lwlib-Xol.o lwlib-Xolmb.o
|
1994-01-18 23:47:41 +00:00
|
|
|
|
1994-01-20 13:16:53 +00:00
|
|
|
TOOLKIT_DEFINES = -DUSE_$(USE_X_TOOLKIT)
|
|
|
|
TOOLKIT_SRCS = $(@X_TOOLKIT_TYPE@_SRCS)
|
|
|
|
TOOLKIT_OBJS = $(@X_TOOLKIT_TYPE@_OBJS)
|
1994-01-19 17:21:49 +00:00
|
|
|
|
|
|
|
SRCS = lwlib.c $(TOOLKIT_SRCS) lwlib-utils.c
|
|
|
|
OBJS = lwlib.o $(TOOLKIT_OBJS) lwlib-utils.o
|
1994-01-18 23:47:41 +00:00
|
|
|
|
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) \
|
|
|
|
-DEMACS_BITMAP_FILES -DTHIS_IS_X11R4
|
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)
|
1994-01-19 17:21:49 +00:00
|
|
|
@echo Do not be alarmed if the following ranlib command
|
|
|
|
@echo fails due to the absence of a ranlib program on your system.
|
|
|
|
-$(RANLIB) $@ || true
|
|
|
|
#If running ranlib fails, probably there is none.
|
|
|
|
#That's ok. So don't stop the build.
|
1994-01-18 23:47:41 +00:00
|
|
|
|
|
|
|
lwlib.o: lwlib.c
|
1994-01-22 23:28:43 +00:00
|
|
|
$(CC) -c $(ALL_CFLAGS) $(TOOLKIT_DEFINES) $(srcdir)/lwlib.c
|
1994-01-18 23:47:41 +00:00
|
|
|
|
|
|
|
xrdb-cpp.o: xrdb-cpp.c
|
1994-01-22 23:28:43 +00:00
|
|
|
$(CC) -c $(ALL_CFLAGS) "-DCPP_PROGRAM=$(CPP)" $(srcdir)/xrdb-cpp.c
|
1994-01-18 23:47:41 +00:00
|
|
|
|
|
|
|
lwlib-utils.o: lwlib-utils.h
|
1994-01-19 17:21:49 +00:00
|
|
|
lwlib.o: lwlib.h lwlib-int.h
|
|
|
|
lwlib-Xlw.o: lwlib.h lwlib-int.h
|
|
|
|
lwlib-Xm.o: lwlib.h lwlib-int.h lwlib-utils.h
|
|
|
|
lwlib-Xol.o: lwlib.h lwlib-int.h
|
|
|
|
lwlib-Xolmb.o: lwlib-Xolmb.h lwlib-XolmbP.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
|
|
|
|
realclean: distclean
|
1994-01-18 23:47:41 +00:00
|
|
|
|
|
|
|
tags::
|
1994-01-19 17:21:49 +00:00
|
|
|
$(TAGS) -t *.[ch]
|