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 -

mongodb - Multiple $and with multiple $or in $match mongoose -

Teradata TPT_INFRA: TPT02640: Error: Conflicting column count -