On 2/9/2016 2:11 PM, Kay Schenk wrote:
...
== HELP, TOO MANY MAKEFILES ==

I started looking at what's been done so far. And, due to the fact
that dmake also uses makefiles, what's the correct way to invoke GNU
make for a build? It looks like the "main" makefile for what's been
migrated so far is /main/Module_ooo.mk (?)

Is there any way to test our actual make file changes on a per
module basis?
...

From http://www.gnu.org/software/make/manual/make.html#Makefile-Arguments

=================================================================
9.1 Arguments to Specify the Makefile

The way to specify the name of the makefile is with the ‘-f’ or ‘--file’ option (‘--makefile’ also works). For example, ‘-f altmake’ says to use the file altmake as the makefile.

If you use the ‘-f’ flag several times and follow each ‘-f’ with an argument, all the specified files are used jointly as makefiles.

If you do not use the ‘-f’ or ‘--file’ flag, the default is to try GNUmakefile, makefile, and Makefile, in that order, and use the first of these three which exists or can be made (see Writing Makefiles).
==================================================================

It looks as though you can call your file "GNUmakefile" and it will be used even if there is also a "makefile" or "Makefile". You could alternatively pick a different naming convention and use "-f", but I recommend against it. Calling your file "GNUmakefile" will give subsequent developers a very useful clue.

Patricia

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
For additional commands, e-mail: dev-h...@openoffice.apache.org

Reply via email to