binutils-gdb/readline/Makefile.in

151 lines
3.9 KiB
Makefile
Raw Normal View History

1991-03-28 17:26:26 +01:00
# #
# Makefile for readline and history libraries. #
# #
1991-03-28 17:26:26 +01:00
1991-05-22 03:30:56 +02:00
srcdir = .
destdir = /usr/local
1991-06-12 23:33:26 +02:00
INSTALL_PROG = install -c
INSTALL_FILE = $(INSTALL_PROG)
1991-05-22 03:30:56 +02:00
#### host and target dependent Makefile fragments come in here.
##
1991-03-28 17:26:26 +01:00
# Here is a rule for making .o files from .c files that doesn't force
# the type of the machine (like -sun3) into the flags.
.c.o:
$(CC) -c $(CFLAGS) $(LOCAL_INCLUDES) $(CPPFLAGS) $(READLINE_DEFINES) $<
# Destination installation directory. The libraries are copied to DESTDIR
# when you do a `make install', and the header files to INCDIR/readline/*.h.
1991-05-22 03:30:56 +02:00
DESTDIR = $(destdir)/lib
INCDIR = $(destdir)/include
1991-03-28 17:26:26 +01:00
# Define TYPES as -DVOID_SIGHANDLER if your operating system uses
# a return type of "void" for signal handlers.
TYPES = -DVOID_SIGHANDLER
# HP-UX compilation requires the BSD library.
#LOCAL_LIBS = -lBSD
# Xenix compilation requires -ldir -lx
#LOCAL_LIBS = -ldir -lx
# Comment out "-DVI_MODE" if you don't think that anyone will ever desire
# the vi line editing mode and features.
READLINE_DEFINES = $(TYPES) -DVI_MODE
DEBUG_FLAGS = -g
LDFLAGS = $(DEBUG_FLAGS)
CFLAGS = $(DEBUG_FLAGS) $(SYSV) -I.
# A good alternative is gcc -traditional.
#CC = gcc -traditional
CC = cc
1991-05-22 03:30:56 +02:00
RANLIB = /bin/ranlib
1991-03-28 17:26:26 +01:00
AR = ar
1991-05-22 03:30:56 +02:00
AR_FLAGS = clq
1991-03-28 17:26:26 +01:00
RM = rm
CP = cp
1991-05-22 03:30:56 +02:00
LOCAL_INCLUDES = -I$(srcdir)/../
1991-03-28 17:26:26 +01:00
CSOURCES = readline.c history.c funmap.c keymaps.c vi_mode.c \
emacs_keymap.c vi_keymap.c
HSOURCES = readline.h chardefs.h history.h keymaps.h
SOURCES = $(CSOURCES) $(HSOURCES)
DOCUMENTATION = readline.texinfo inc-readline.texinfo \
history.texinfo inc-history.texinfo
SUPPORT = COPYING Makefile $(DOCUMENTATION) ChangeLog
THINGS_TO_TAR = $(SOURCES) $(SUPPORT)
##########################################################################
1991-06-12 22:09:59 +02:00
STAGESTUFF = *.o
1991-05-22 03:30:56 +02:00
1991-03-28 17:26:26 +01:00
all: libreadline.a
libreadline.a: readline.o history.o funmap.o keymaps.o
$(RM) -f libreadline.a
1991-05-22 03:30:56 +02:00
$(AR) $(AR_FLAGS) libreadline.a readline.o history.o funmap.o keymaps.o
$(RANLIB) libreadline.a
1991-03-28 17:26:26 +01:00
readline.o: readline.h chardefs.h keymaps.h history.h readline.c vi_mode.c
history.o: history.c history.h
funmap.o: readline.h
keymaps.o: emacs_keymap.c vi_keymap.c keymaps.h chardefs.h keymaps.c
libtest: libreadline.a libtest.c
$(CC) -o libtest $(CFLAGS) $(CPPFLAGS) -L. libtest.c -lreadline -ltermcap
readline: readline.c history.o keymaps.o funmap.o readline.h chardefs.h
$(CC) $(CFLAGS) $(CPPFLAGS) $(READLINE_DEFINES) \
$(LOCAL_INCLUDES) -DTEST -o readline readline.c funmap.o \
keymaps.o history.o -L. -ltermcap
readline.tar: $(THINGS_TO_TAR)
tar -cf readline.tar $(THINGS_TO_TAR)
readline.tar.Z: readline.tar
compress -f readline.tar
install: $(DESTDIR)/libreadline.a includes
includes:
if [ ! -r $(INCDIR)/readline ]; then\
mkdir $(INCDIR)/readline;\
chmod a+r $(INCDIR)/readline;\
fi
$(INSTALL_FILE) $(srcdir)/readline.h $(INCDIR)/readline/
$(INSTALL_FILE) $(srcdir)/keymaps.h $(INCDIR)/readline/
$(INSTALL_FILE) $(srcdir)/chardefs.h $(INCDIR)/readline/
1991-03-28 17:26:26 +01:00
clean:
1991-06-12 22:09:59 +02:00
rm -f $(STAGESTUFF) *.a *.log *.cp *.tp *.vr *.fn *.aux *.pg *.toc
1991-03-28 17:26:26 +01:00
$(DESTDIR)/libreadline.a: libreadline.a
-mv $(DESTDIR)/libreadline.a $(DESTDIR)/libreadline.old
1991-06-12 23:33:26 +02:00
$(INSTALL_PROG) libreadline.a $(DESTDIR)/libreadline.a
$(RANLIB) $(DESTDIR)/libreadline.a
1991-05-22 03:30:56 +02:00
# Copy the object files from a particular stage into a subdirectory.
stage1: force
-mkdir stage1
-mv $(STAGESTUFF) stage1
stage2: force
-mkdir stage2
-mv $(STAGESTUFF) stage2
stage3: force
-mkdir stage3
-mv $(STAGESTUFF) stage3
1991-06-09 22:22:11 +02:00
against=stage2
comparison: force
for i in $(STAGESTUFF) ; do cmp $$i $(against)/$$i ; done
1991-05-22 03:30:56 +02:00
de-stage1: force
- (cd stage1 ; mv -f * ..)
- rmdir stage1
de-stage2: force
- (cd stage2 ; mv -f * ..)
- rmdir stage2
de-stage3: force
- (cd stage3 ; mv -f * ..)
- rmdir stage3
force:
# with the gnu make, this is done automatically.
Makefile: $(srcdir)/Makefile.in $(srcdir)/configure $(host_makefile_frag) $(target_makefile_frag)
$(SHELL) ./config.status