File:  [Local Repository] / ratfiv / Makefile
Revision 1.1.1.1 (vendor branch): download - view: text, annotated - select for diffs
Fri Jun 15 16:14:55 2001 UTC (23 years ago) by brouard
Branches: ratfiv, MAIN
CVS tags: ratfiv-103, HEAD
Created Directory Structure

# This Makefile needs GNU make
#
# copy this file to the directory where your eps figures are
# and simply run make in order to update the pdf's
#

# this does not work on Solaris with GNU make 3.77 (propably a bug)
EPS_FILES = $(wildcard *.eps)

# use this instead
#EPS_FILES = $(shell dir *.eps)

PDFS := $(patsubst %.eps, %.pdf, $(EPS_FILES))

default: $(PDFS)

%.pdf: %.eps
	epstopdf $<

.PHONY : clean

clean :
	-rm *.pdf

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>