You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
689 B
31 lines
689 B
PRESENTATIONS = Logiciel_Libre Yocto-RapsberryPi-devtool-Ansible Alternative_pour_Android Presentation_fitImage Formation_Udev Yocto-devel Formation_Memoires
|
|
|
|
# Individual project
|
|
|
|
Logiciel_Libre: Logiciel_Libre.pdf
|
|
|
|
Yocto-RapsberryPi-devtool-Ansible: Yocto-RapsberryPi-devtool-Ansible.pdf
|
|
|
|
Alternative_pour_Android: Alternative_pour_Android.pdf
|
|
|
|
Presentation_fitImage: Presentation_fitImage.pdf
|
|
|
|
Formation_Udev: Formation_Udev.pdf
|
|
|
|
Yocto-devel: Yocto-deve.pdf
|
|
|
|
Formation_Memoires: Formation_Memoires.pdf
|
|
|
|
# Commun project
|
|
|
|
all: $(addsuffix .pdf,$(PRESENTATIONS))
|
|
|
|
%.pdf: %.tex
|
|
pdflatex $<
|
|
|
|
clean: $(addprefix clean-,$(PRESENTATIONS))
|
|
|
|
clean-%:
|
|
rm -f $*.{aux,nav,vrb,log,out,snm,toc}
|
|
|