Imported from ../bash-2.04.tar.gz.

This commit is contained in:
Jari Aalto 2000-03-17 21:46:59 +00:00
commit bb70624e96
387 changed files with 28522 additions and 9334 deletions

View file

@ -8,6 +8,22 @@
#
# Currently only man2html is built
#
#
# Copyright (C) 1998 Free Software Foundation, Inc.
# This program 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, 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., 59 Temple Place, Suite 330, Boston, MA 02111 USA.
#
# Boilerplate
@ -21,6 +37,8 @@ RM = rm -f
SHELL = @MAKE_SHELL@
CC = @CC@
EXEEXT = @EXEEXT@
#
# Compiler options:
#
@ -47,9 +65,9 @@ OBJ1 = man2html.o
$(RM) $@
$(CC) -c $(CCFLAGS) $<
all: man2html
all: man2html$(EXEEXT)
man2html: $(OBJ1)
man2html$(EXEEXT): $(OBJ1)
$(CC) $(CCFLAGS) $(OBJ1) -o $@ ${LIBS}
clean: