summaryrefslogtreecommitdiff
path: root/dvi/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'dvi/Makefile')
-rw-r--r--dvi/Makefile81
1 files changed, 0 insertions, 81 deletions
diff --git a/dvi/Makefile b/dvi/Makefile
deleted file mode 100644
index 5b32f104f..000000000
--- a/dvi/Makefile
+++ /dev/null
@@ -1,81 +0,0 @@
-#Copyright (C) 1989, 1990, 1991 Free Software Foundation, Inc.
-# Written by James Clark (jjc@jclark.uucp)
-#
-#This file is part of groff.
-#
-#groff 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 1, or (at your option) any later
-#version.
-#
-#groff 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 groff; see the file LICENSE. If not, write to the Free Software
-#Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
-
-BINDIR=/usr/local/bin
-CC=g++
-CFLAGS=-g -O -Wall -Wcast-qual -Wwrite-strings
-LDFLAGS=-g
-OLDCC=gcc
-MLIBS=-lm
-INCLUDES=-I../driver -I../lib
-DEFINES=
-SOURCES=dvi.c
-MISC=Makefile devgps
-BINDIR=/usr/local/bin
-FONTDIR=/usr/local/lib/groff/font
-MACRODIR=/usr/local/lib/groff/tmac
-ETAGS=etags
-ETAGSFLAGS=-p
-
-.c.o:
- $(CC) -c $(INCLUDES) $(CFLAGS) $(DEFINES) $<
-
-all: grodvi tfmtodit devdvi
-
-grodvi: dvi.o ../driver/libdriver.a ../lib/libgroff.a
- $(CC) $(LDFLAGS) -o $@ dvi.o \
- ../driver/libdriver.a ../lib/libgroff.a $(MLIBS)
-
-tfmtodit: tfmtodit.o ../lib/libgroff.a
- $(CC) $(LDFLAGS) -o $@ tfmtodit.o ../lib/libgroff.a $(MLIBS)
-
-dvi.o: ../driver/printer.h ../driver/driver.h ../lib/font.h
-
-install.bin: grodvi tfmtodit
- -[ -d $(BINDIR) ] || mkdir $(BINDIR)
- -rm -f $(BINDIR)/grodvi
- cp grodvi $(BINDIR)
- -rm -f $(BINDIR)/tfmtodit
- cp tfmtodit $(BINDIR)
- @echo Making install.bin in devdvi
- @cd devdvi; $(MAKE) "FONTDIR=$(FONTDIR)" install.bin
-
-install.nobin:
- -[ -d $(MACRODIR) ] || mkdir $(MACRODIR)
- -rm -f $(MACRODIR)/tmac.dvi
- cp tmac.dvi $(MACRODIR)
- @echo Making install.nobin in devdvi
- @cd devdvi; $(MAKE) "FONTDIR=$(FONTDIR)" install.nobin
-
-TAGS: dvi.c
- $(ETAGS) $(ETAGSFLAGS) dvi.c
-
-clean:
- -rm -f *.o core grodvi tfmtodit
-
-distclean: clean
- -rm -f TAGS
-
-realclean: distclean
-
-devdvi: FORCE
- @echo Making all in $@
- @cd $@; $(MAKE) all
-
-FORCE: