[GRASS-SVN] r64903 - grass-promo/grassposter/2015_EGU_G7_PeerReview_SciPlatform

svn_grass at osgeo.org svn_grass at osgeo.org
Tue Mar 24 20:14:20 PDT 2015


Author: wenzeslaus
Date: 2015-03-24 20:14:20 -0700 (Tue, 24 Mar 2015)
New Revision: 64903

Removed:
   grass-promo/grassposter/2015_EGU_G7_PeerReview_SciPlatform/code/
   grass-promo/grassposter/2015_EGU_G7_PeerReview_SciPlatform/svg_images/
Modified:
   grass-promo/grassposter/2015_EGU_G7_PeerReview_SciPlatform/Makefile
Log:
remove unused directories and files and simplify Makefile to what is needed right now

Anyway, compilation does not work due to always present Rerun word in the .log file.


Modified: grass-promo/grassposter/2015_EGU_G7_PeerReview_SciPlatform/Makefile
===================================================================
--- grass-promo/grassposter/2015_EGU_G7_PeerReview_SciPlatform/Makefile	2015-03-25 02:49:09 UTC (rev 64902)
+++ grass-promo/grassposter/2015_EGU_G7_PeerReview_SciPlatform/Makefile	2015-03-25 03:14:20 UTC (rev 64903)
@@ -1,13 +1,5 @@
 FILE=poster
-SVGDIR = $(shell pwd)/svg_images
-CODEDIR = $(shell pwd)/code
 
-SVGFILES = $(shell ls $(SVGDIR)/*.svg)
-SVGPDF = $(patsubst %.svg, %.pdf, $(SVGFILES))
-CODEFILES = $(shell ls $(CODEDIR)/*.tex)
-CODEPDF = $(patsubst %.tex, %.pdf, $(CODEFILES))
-
-
 all: $(FILE).pdf
 
 $(FILE).pdf: *.tex Makefile
@@ -17,23 +9,12 @@
 		make pdf; \
 	done
 
-pdf: fig code
+pdf:
 	pdflatex $(FILE).tex
 	bibtex $(FILE)
 
-fig: $(SVGPDF)
-
-$(SVGPDF): %.pdf: %.svg
-	inkscape -z --export-pdf=$@ --export-area-drawing --export-dpi=300 $<
-
-code: $(CODEPDF)
-
-$(CODEPDF): %.pdf: %.tex
-	pdflatex -shell-escape -output-directory=$(CODEDIR) $< 
-
 clean:
-	rm -f *~ *.aux *.log *.out *.toc *.bbl *.blg *-blx.bib *.ps *.pyg code/*.pyg
-	rm -f $(SVGPDF) $(CODEPDF)
+	rm -f *~ *.aux *.log *.out *.toc *.bbl *.blg *-blx.bib *.ps *.pyg
 
 distclean:
 	make clean



More information about the grass-commit mailing list