Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.
target: dependencies
    command1
    command2

On my system (Mac OS X), make seems to require that that Makefiles have a tab character preceding the the content of each command line, or it throws a syntax error.

This is an annoyance when creating or editing Makefiles because I have my editor set up to be all-spaces-all-the-time.

Can you make valid Makefiles without tab characters?

share|improve this question
1  
I have also configured my editor to emulate tabs with spaces. But, my editor also allows me to type Ctrl-Tab in the rare occasions when I absolutely, positively must have a tab, as in Makefiles. Perhaps your editor does as well. – toolic Jan 25 '10 at 15:12

4 Answers

up vote 19 down vote accepted

This is a syntax oddity/requirement of make, it has nothing to do with Mac OS X. Unfortunately, there's nothing you can do about it if you are going to use make.

You are not the first one to dislike this aspect of make. To quote Unix Haters' Handbook:

The problem with Dennis’s Makefile is that when he added the comment line, he inadvertently inserted a space before the tab character at the beginning of line 2. The tab character is a very important part of the syntax of Makefiles. All command lines (the lines beginning with cc in our example) must start with tabs. After he made his change, line 2 didn’t, hence the error.

“So what?” you ask, “What’s wrong with that?”

There is nothing wrong with it, by itself. It’s just that when you consider how other programming tools work in Unix, using tabs as part of the syntax is like one of those pungee stick traps in The Green Berets: the poor kid from Kansas is walking point in front of John Wayne and doesn’t see the trip wire. After all, there are no trip wires to watch out for in Kansas corn fields. WHAM!

share|improve this answer
1  
The issue with tabs is one of the first thing anyone using make learns - I've never found it to be a real problem. – anon Jan 25 '10 at 9:30
@Neil, Me neither: I never said I agreed with the UHH, I was just saying some people don't like it. :-) – Alok Jan 25 '10 at 9:34
2  
You lucky bastards. – reinierpost Dec 13 '10 at 0:05

There is a convoluted way of have a valid makefile without tabs.

If you change your makefile to read:

target: dependencies; command1; command2

If will work. If you want it on more than one line, then you can do:

target: dependencies; \
command1; \
command2

Messy, but it works.

share|improve this answer
This is ugly, but the first line solved my problem. Thanks! – velotron May 14 at 3:53

For anything but the most trivial/menial tasks, no.

share|improve this answer

Not portably. Certain flavours of make absolutely require tab characters. Yet another reason for preferring tabs over spaces :-)

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.