home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Geek Gadgets 1
/
ADE-1.bin
/
ade-dist
/
ghostscript-2.6.2-src.tgz
/
tar.out
/
fsf
/
ghostscript
/
fonts
/
Makefile.in
< prev
next >
Wrap
Makefile
|
1996-09-28
|
1KB
|
44 lines
# Ghostscript fonts Makefile.
#### Start of system configuration section. ####
VPATH = @srcdir@
srcdir = @srcdir@
# Common prefix for machine-independent installed files.
prefix = /ade
# Common prefix for machine-dependent installed files.
exec_prefix = $(prefix)
# Directory to install libraries in.
libdir = $(exec_prefix)/lib
# Program to install data like man pages.
INSTALL_DATA = @INSTALL_DATA@
# Generic install program.
INSTALL = @INSTALL@
#### End of system configuration section. ####
# Define the default directories for the runtime
# initialization and font files. Separate multiple directories with a ','.
gsdatadir = $(libdir)/ghostscript
gsfontsdir = $(gsdatadir)/fonts
# Installation
all:
clean:
clobber:
install:
if [ -d $(libdir) ]; then true; else mkdir $(libdir); fi
if [ -d $(gsfontsdir) ]; then true; else mkdir $(gsfontsdir); fi
for f in `(cd $(srcdir)/fonts ; find . -type f -print)` ; do $(INSTALL_DATA) $(srcdir)/fonts/$$f $(gsfontsdir)/$$f ; done
Makefile: config.status $(srcdir)/Makefile.in
$(SHELL) config.status