From 16788ca9fd7352b2b20f4b11111283a8cd4212e2 Mon Sep 17 00:00:00 2001 From: Ian Lance Taylor Date: Tue, 9 Mar 1993 18:16:38 +0000 Subject: Removed obsolete Makefile.dos. --- readline/.Sanitize | 1 - readline/Makefile.dos | 228 ----------------------------------------- readline/examples/.Sanitize | 1 - readline/examples/Makefile.dos | 12 --- 4 files changed, 242 deletions(-) delete mode 100644 readline/Makefile.dos delete mode 100644 readline/examples/Makefile.dos (limited to 'readline') diff --git a/readline/.Sanitize b/readline/.Sanitize index 0599ebd..539c960 100644 --- a/readline/.Sanitize +++ b/readline/.Sanitize @@ -27,7 +27,6 @@ Things-to-keep: COPYING ChangeLog -Makefile.dos Makefile.in configure.bat chardefs.h diff --git a/readline/Makefile.dos b/readline/Makefile.dos deleted file mode 100644 index 201fc79..0000000 --- a/readline/Makefile.dos +++ /dev/null @@ -1,228 +0,0 @@ -# This file was generated automatically by configure. Do not edit. -target_makefile_frag = -host_makefile_frag = -CROSS=-DCROSS_COMPILE -ALL=all.cross -host_alias = go32 -host_cpu = i386 -host_vendor = dj -host_os = dos -version_path = -target_alias = h8300hds -target_cpu = h8300 -target_vendor = hitachi -target_os = hds -subdir = -unsubdir = . -VPATH = . -# -# Makefile -# Copyright 1990, 1991 Free Software Foundation, Inc. -# -# This file 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 2 of the License, or -# (at your option) any later version. -# -# This program 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 this program; if not, write to the Free Software -# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ -# - -# -# Makefile for readline and history libraries. -# - -srcdir = . - -prefix = /usr/local - -bindir = $(prefix)/bin -datadir = $(prefix)/lib -libdir = $(prefix)/lib -mandir = $(datadir)/man -man1dir = $(mandir)/man1 -man2dir = $(mandir)/man2 -man3dir = $(mandir)/man3 -man4dir = $(mandir)/man4 -man5dir = $(mandir)/man5 -man6dir = $(mandir)/man6 -man7dir = $(mandir)/man7 -man8dir = $(mandir)/man8 -man9dir = $(mandir)/man9 -infodir = $(datadir)/info -includedir = $(prefix)/include -docdir = $(datadir)/doc - -SHELL = /bin/sh - -INSTALL = install -c -INSTALL_PROGRAM = $(INSTALL) -INSTALL_DATA = $(INSTALL) - -AR = ar -AR_FLAGS = qv -BISON = bison -MAKEINFO = makeinfo -RANLIB = ar rvs - -#### Host, target, and site specific Makefile fragments come in here. -### - -# 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) -H_CFLAGS=-D__MSDOS__ -D__GO32__ -CFLAGS = $(H_CFLAGS) $(DEBUG_FLAGS) $(USG) -I. $(LOCAL_INCLUDES) $(CPPFLAGS) $(READLINE_DEFINES) - -# A good alternative is gcc -traditional. -#CC = gcc -traditional -RM = rm -CP = cp - -LOCAL_INCLUDES = -I$(srcdir)/../ - -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.texi inc-read.texi \ - history.texi inc-hist.texi - -SUPPORT = COPYING Makefile $(DOCUMENTATION) ChangeLog - -THINGS_TO_TAR = $(SOURCES) $(SUPPORT) - -########################################################################## - -STAGESTUFF = *.o - -all: libreadline.a - -info: - echo FIXME - echo FIXME - echo FIXME - -clean-info: force - -rm -f *.info* - -history.info: $(srcdir)/history.texi - $(MAKEINFO) -o history.info $(srcdir)/history.texi - -readline.info: $(srcdir)/readline.texi $(srcdir)/inc-read.texi - $(MAKEINFO) -o readline.info $(srcdir)/readline.texi - -libreadline.a: readline.o history.o funmap.o keymaps.o tilde.o vi_mode.o - -$(RM) -f libreadline.a - $(AR) $(AR_FLAGS) libreadline.a readline.o history.o funmap.o keymaps.o tilde.o vi_mode.o - $(RANLIB) libreadline.a - -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 - -tilde.o: $(srcdir)/../glob/tilde.c - $(CC) -c $(CFLAGS) $(srcdir)/../glob/tilde.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 vi_mode.o - $(CC) $(CFLAGS) $(CPPFLAGS) $(READLINE_DEFINES) \ - $(LOCAL_INCLUDES) -DTEST -o readline readline.c funmap.o \ - keymaps.o history.o vi_mode.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: - $(INSTALL_DATA) libreadline.a $(libdir)/libreadline.a - $(RANLIB) $(libdir)/libreadline.a - [ -d $(includedir)/readline ] || mkdir $(includedir)/readline - $(INSTALL_DATA) $(srcdir)/readline.h $(includedir)/readline/readline.h - $(INSTALL_DATA) $(srcdir)/keymaps.h $(includedir)/readline/keymaps.h - $(INSTALL_DATA) $(srcdir)/chardefs.h $(includedir)/readline/chardefs.h - -install-info: info - echo FIXME - echo FIXME - echo FIXME -# for i in *.info* ; do \ -# $(INSTALL_DATA) $$i $(infodir)/$$i ; \ -# done - -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/ -clean: - rm -f $(STAGESTUFF) *.a *.log *.cp *.tp *.vr *.fn - rm -f *.aux *.pg *.toc - -$(DESTDIR)/libreadline.a: libreadline.a - -# 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 - -against=stage2 - -comparison: force - for i in $(STAGESTUFF) ; do cmp $$i $(against)/$$i ; done - -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 $(host_makefile_frag) $(target_makefile_frag) - $(SHELL) ./config.status diff --git a/readline/examples/.Sanitize b/readline/examples/.Sanitize index 74688ce..71015a2 100644 --- a/readline/examples/.Sanitize +++ b/readline/examples/.Sanitize @@ -27,7 +27,6 @@ Things-to-keep: Inputrc Makefile -Makefile.dos configure.bat fileman.c manexamp.c diff --git a/readline/examples/Makefile.dos b/readline/examples/Makefile.dos deleted file mode 100644 index 76796ec..0000000 --- a/readline/examples/Makefile.dos +++ /dev/null @@ -1,12 +0,0 @@ -# This is the Makefile for the examples subdirectory of readline. -*- text -*- -# - -EXECUTABLES = fileman -CFLAGS = -g -I../.. -D__MSDOS__ -D__GO32__ -LDFLAGS = -g -L.. - -fileman: fileman.o - $(CC) $(LDFLAGS) -o fileman fileman.o -lreadline -lpc - -fileman.o: fileman.c - -- cgit v1.1