From cd52bde3369b2c5c7cc879d158a8cd42bfc2dffa Mon Sep 17 00:00:00 2001 From: William McBrine Date: Fri, 9 Nov 2007 08:40:55 +0000 Subject: [PATCH] No longer needed. --- doc/Makefile.in | 66 ------------------------------------------------- 1 file changed, 66 deletions(-) delete mode 100644 doc/Makefile.in diff --git a/doc/Makefile.in b/doc/Makefile.in deleted file mode 100644 index f992c884..00000000 --- a/doc/Makefile.in +++ /dev/null @@ -1,66 +0,0 @@ -# Makefile for PDCurses manext program. - -SHELL = @SHELL@ - -srcdir = @srcdir@ -pdcdir = $(srcdir)/../x11 - -prefix = @prefix@ -exec_prefix = @exec_prefix@ -libdir = $(exec_prefix) - -CC = @CC@ -CFLAGS = @CFLAGS@ - -INCDIR = $(srcdir) -CPPFLAGS = @DEFS@ @SYS_DEFS@ - -CCFLAGS = -c $(CFLAGS) $(CPPFLAGS) - -LINK = $(CC) -LDFLAGS = @LDFLAGS@ @LIBS@ - -DOC_DIR=$(srcdir)/../doc -INC_DIR=$(srcdir)/.. -PDCURSES_DIR=$(srcdir)/../pdcurses - -all: manual - -manual: PDCurses.txt - -PDCurses.txt: manext - cat $(DOC_DIR)/intro.txt > PDCurses.txt - echo PDCurses Definitions and Variables >> PDCurses.txt - echo ================================== >> PDCurses.txt - ./manext $(INC_DIR)/curses.h >> PDCurses.txt - echo PDCurses Functions >> PDCurses.txt - echo ================== >> PDCurses.txt - ./manext $(PDCURSES_DIR)/*.c >> PDCurses.txt - ./manext $(pdcdir)/*.c >> PDCurses.txt - cat $(DOC_DIR)/x11.txt >> PDCurses.txt - echo >> PDCurses.txt - echo >> PDCurses.txt - echo \ --------------------------------------------------------------------------- \ ->> PDCurses.txt - echo >> PDCurses.txt - cat $(DOC_DIR)/sdl.txt >> PDCurses.txt - -manext: manext.o - $(LINK) manext.o -o $@ $(LDFLAGS) - -manext.o: $(srcdir)/manext.c - $(CC) $(CCFLAGS) -o $@ $(srcdir)/manext.c - -install: - echo Does nothing at the moment - -clean: - -rm -rf *.o manext PDCurses.txt - -distclean: clean - -rm -f Makefile - -mostlyclean: clean - -realclean: distclean