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

sequelize.js - Sequelize group by with association includes id -

android - Robolectric "INTERNET permission is required" -

java - Android raising EPERM (Operation not permitted) when attempting to send UDP packet after network connection -