0

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.

Shubham Chaudhary
  • 47,722
  • 9
  • 78
  • 80

1 Answers1

0

In my case I was using a kde-bashrc file which aliased make to makeobj. You can figure out details using type make and then figure out accordingly.

I unaliased make and I was good to go.

Shubham Chaudhary
  • 47,722
  • 9
  • 78
  • 80