Simple Makefile doesn't clean -


i have makefile:

default:     mv presentacion.pdf /tmp     pdflatex presentacion.tex  clean:     rm -f *.{aux,log,nav,out,snm,toc} 

the order make works when try make clean shell outputs:

rm -f *.{aux,log,nav,out,snm,toc}

and not remove files. what's wrong in code?

try set shell bash in makefile (according docs)

shell=/bin/bash  default:     mv presentacion.pdf /tmp     pdflatex presentacion.tex  clean:     rm -f *.{aux,log,nav,out,snm,toc} 

Comments

Popular posts from this blog

ios - Is 'init' forbidden as *part* of a variable name? -

file - Python: AttributeError: 'str' object has no attribute 'readlines' -

c# - Get the Class name in a class with atribute inside a attribute method -