Skip to content
Snippets Groups Projects
Select Git revision
  • e6ed9eab8229f2e477dd12cf7adf90066d10f709
  • master default protected
  • fix/typo
  • wip/project-management
  • lfs
5 results

Makefile

Blame
  • Christian Krause's avatar
    e6ed9eab
    History
    Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    Makefile 413 B
    SUBDIRS = \
    	img
    
    $(SUBDIRS):
    	$(MAKE) -C $@
    
    pandoc-papers.pdf: pandoc-papers.md
    	pandoc \
    		-V aspectratio=169 \
    		-V institute=iDiv \
    		-V theme=Frankfurt \
    		-V navigation=horizontal \
    		-s paper.md -t beamer -o pandoc-papers.pdf
    
    all: subdirs
    
    clean:
    	for dir in $(SUBDIRS); do \
    	  $(MAKE) -C $$dir $@; \
    	done
    
    default: all
    
    subdirs: $(SUBDIRS)
    
    .PHONY: \
    	$(SUBDIRS) \
    	all \
    	clean \
    	default \
    	subdirs