I'm trying to run make
command on a new Mac machine (OSX).
shubham@IN:~/code/xps/bus_boarding_paper$ make
-bash: makeobj: command not found
My Makefile is as follows:
title=bus_boarding_paper
target=$(title).pdf
all: pdf
bus_boarding_paper.pdf: pdf
pdf: $(title).tex title_page/*.tex
pdflatex $(title).tex
bibtex $(title).aux
pdflatex $(title).tex
pdflatex $(title).tex
There is no related post online with a clear solution. SO also shows no results.
What does this error message mean? It is not clear to me.
PS: Another friend of mine had this problem on Fedora too.