I routinely work on several different computers and several different operating systems, which are Mac OS X, Linux, or Solaris. For the project I'm working on, I pull my code from a remote git repository.

I like to be able to work on my projects regardless of which terminal I'm at. So far, I've found ways to get around the OS changes by changing the makefile every time I switch computers. However, this is tedious and causes a bunch of headaches.

How can I modify my makefile so that it detects which OS I'm using and modifies syntax accordingly?

Here is the makefile:

 cc = gcc -g
CC = g++ -g
yacc=$(YACC)
lex=$(FLEX)

all: assembler

assembler: y.tab.o lex.yy.o
        $(CC) -o assembler y.tab.o lex.yy.o -ll -l y

assembler.o: assembler.c
        $(cc) -o assembler.o assembler.c

y.tab.o: assem.y
        $(yacc) -d assem.y
        $(CC) -c y.tab.c

lex.yy.o: assem.l
        $(lex) assem.l
        $(cc) -c lex.yy.c

clean:
        rm -f lex.yy.c y.tab.c y.tab.h assembler *.o *.tmp *.debug *.acts
link|improve this question

feedback

7 Answers

up vote 44 down vote accepted

The uname command (http://developer.apple.com/documentation/Darwin/Reference/ManPages/man1/uname.1.html) with no parameters should tell you the operating system name. I'd use that, then make conditionals based on the return value.

Example

UNAME := $(shell uname)

ifeq ($(UNAME), Linux)
# do something Linux-y
endif
ifeq ($(UNAME), Solaris)
# do something Solaris-y
endif
link|improve this answer
The UNAME := $(shell uname) command fails when I try it. – samoz Apr 3 '09 at 15:08
Just to be explicit, that line goes in your Makefile. I just tried that construct in Makefiles in Cygwin and OSX, and it worked as expected. Something to try: Type uname on your command line. That'll tell you the value for that OS. OSX will likely be "Darwin". – dbrown0708 Apr 3 '09 at 18:10
The GnuWin32 project has both uname and Gnu make available as native Windows applications, making this technique portable to MingW at a command prompt as well as Cygwin on Windows. – RBerteig Apr 4 '09 at 1:52
It fails on my Solaris machine when it's inside the makefile. The uname command is available on that system. – samoz Apr 4 '09 at 21:20
Did it work in OSX or Linux? Is it possible you're not running GNU make but some other variant? If you aren't using GNU, it might be worth installing that version on your Solaris box since OSX and Linux will be running GNU. – dbrown0708 Apr 6 '09 at 3:01
show 4 more comments
feedback

That's the job that GNU's automake/autoconf are designed to solve. You might want to investigate them.

Alternatively you can set environment variables on your different platforms and make you Makefile conditional against them.

link|improve this answer
feedback

The git makefile contains numerous examples of how to manage without autoconf/automake, yet still work on a multitude of unixy platforms.

link|improve this answer
feedback

Note that Makefiles are extremely sensitive to spacing. Here's an example of a Makefile that runs an extra command on OSX and which works on OSX and Linux. Overall, though, autoconf/automake is the way to go for anything at all non-trivial.

UNAME := $(shell uname -s)
CPP = g++
CPPFLAGS = -pthread -ansi -Wall -Werror -pedantic -O0 -g3 -I /nexopia/include
LDFLAGS = -pthread -L/nexopia/lib -lboost_system

HEADERS = data_structures.h http_client.h load.h lock.h search.h server.h thread.h utility.h
OBJECTS = http_client.o load.o lock.o search.o server.o thread.o utility.o vor.o

all: vor

clean:
    rm -f $(OBJECTS) vor

vor: $(OBJECTS)
    $(CPP) $(LDFLAGS) -o vor $(OBJECTS)
ifeq ($(UNAME),Darwin)
    # Set the boost library location
    install_name_tool -change libboost_system.dylib /nexopia/lib/libboost_system.dylib vor
endif

%.o: %.cpp $(HEADERS) Makefile
    $(CPP) $(CPPFLAGS) -c $
link|improve this answer
feedback

If your makefile may be running on non-cygwin Windows, uname may not be available. That's awkward, but this is a potential solution. You have to check for Cygwin first to rule it out, because it has WINDOWS in it's PATH too.

ifneq (,$(findstring /cygdrive/,$(PATH)))
    UNAME := Cygwin
else
ifneq (,$(findstring WINDOWS,$(PATH)))
    UNAME := Windows
else
    UNAME := $(shell uname -s)
endif
endif
link|improve this answer
This is good to now! Can you tell me one thing, though? I don't use Cygwin, but I have MinGW installed with it's bin path in PATH. If I issue uname from a normal cmd terminal it gives me MINGW. What I mean is, I still have uname without using Cygwin. I also have git bash, but I haven't tried uname on it (right now I'm in Linux). Can you tell me how these two can be incorporated in your code? – Shahbaz May 16 at 11:56
If you are sure that uname is available, that's the best solution. But in my environment, everyone is using Windows and few people have either cygwin or mingw installed, so I have no guarantee that anything even as standard as uname will work. I'm currently having some difficulty with the above code running make.exe in a cmd shell. Windows is a very frustrating platform to work with. – Ken Jackson May 17 at 21:34
What I mean is, before testing for existence of WINDOWS in PATH, you make sure you are not dealing with cygwin, how can you make sure you are not dealing with MinGW? For example, is it possible in Makefile to test whether a command can be run, and if uname couldn't be run we would understand we are in Windows? – Shahbaz May 17 at 22:49
feedback

Another way to do this is by using a "configure" script. If you are already using one with your makefile, you can use a combination of uname and sed to get things to work out. First, in your script, do:

UNAME=uname

Then, in order to put this in your Makefile, start out with Makefile.in which should have something like

UNAME=@@UNAME@@

in it.

Use the following sed command in your configure script after the UNAME=uname bit.

sed -e "s|@@UNAME@@|$UNAME|" < Makefile.in > Makefile

Now your makefile should have UNAME defined as desired. If/elif/else statements are all that's left!

link|improve this answer
feedback

I ran into this problem today and I needed it on Solaris so here is a POSIX standard way to do (something very close to) this.

#Detect OS
UNAME = `uname`

# Build based on OS name
DetectOS:
    -@make $(UNAME)


# OS is Linux, use GCC
Linux: program.c
    @SHELL_VARIABLE="-D_LINUX_STUFF_HERE_"
    rm -f program
    gcc $(SHELL_VARIABLE) -o program program.c

# OS is Solaris, use c99
SunOS: program.c
    @SHELL_VARIABLE="-D_SOLARIS_STUFF_HERE_"
    rm -f program
    c99 $(SHELL_VARIABLE) -o program program.c
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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