Skip to content
Advertisement

Makefile dealing with different source and object directories under Windows and Linux

I have a problem creating a Makefile for a project with source files scattered in different folders. As the source files might have the same names, I’d like to send the objects into different folders as well. With a single source and object file, I’m doing fine following rules like posted elsewhere (Automatic makefile with source and object files in different directories). The Makefile has to be adequate to be used with Windows and Linux, which I solve by the pathfix definition (see code below). This part is doing fine, but I might overlook some detail. Here is a shortened version of the Makefile showing my approach:

JavaScript

The problem is easiest illustrated on the output. On Windows, mingw32-make > output.txt reads

JavaScript

The reason for this is the -c $< syntax which takes only the first entry of the dependencies (in this case ..minime_ppsrcminime_class.cpp).

The solution for this might be to switch back to a definition like

JavaScript

The problem now is the backslash – there is no requirement in $(OBJECTS_ALL) that will match this new definition and thus nothing happens. Using the in the definition won’t work. So I thought you get rid of the backslash – forward slash conversion, but then the automatic directory creation won’t work on Windows. Something like -c $< but with $< picking the ‘matching’ one from the list without /%.cpp is basically what I’m looking for.

If someone knows an way around writing two Makefiles (Windows, Linux) thanks for a hint.

Advertisement

Answer

You should never use backslash separators in makefiles. Almost all Windows tools support normal UNIX slash as directory separators. For those few that don’t it’s easier to convert them for that specific utility inside the recipe: in other words, put the calls to $(pathfix ...) inside the recipes only where they’re needed.

Note that almost without fail the commands that require backslashes will be Windows-specific (command.com) commands, which won’t be portable to UNIX anyway.

User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement