Questions tagged [multiple-makefiles]

50 questions
0
votes
2 answers

Complex command execution in Makefile

I have a query regarding the execution of a complex command in the makefile of the current system. I am currently using shell command in the makefile to execute the command. However my command fails as it is a combination of a many commands and…
satishkumar432
  • 337
  • 1
  • 6
  • 19
0
votes
1 answer

parallelize external Makefile

I've this Makefile framework: @$(MAKE) -C $(HIGGSBASESELECTOR) @$(MAKE) -C $(MATRIX4) @$(MAKE) -C $(SUBSELECTOR) @$(MAKE) -C $(MCSUBSELECTOR) @$(MAKE) -C $(MATRIXSUBSELECTOR) @$(MAKE) -C $(CHECKSUBSELECTOR) ... if I…
Ruggero Turra
  • 16,929
  • 16
  • 85
  • 141
0
votes
0 answers

Makefile include file for same targets

I have a large project using recursive Make. Almost all the Makefiles are the same though. I'm basically building all the object files into the same directory like this: $(OBJ)/%.o: %.c $(COMPILE) ${INCLUDES} -c $< -o $@ $(OBJ)/%.o:…
goj
  • 1
0
votes
1 answer

Mono: How to add a DLL reference in Makefile.am?

I am trying to add a DLL to CmisSync, an open source project that uses Mono and autogen/configure/Makefiles. It is my first time with Mono. I copied the DLL to the relevant subdirectory, and modified this directory's Makefile.am at this line: LINK =…
Nicolas Raoul
  • 58,567
  • 58
  • 222
  • 373
0
votes
0 answers

Strange behaviour after recursively calling another makefile

I have a main makefile in the root directory of my project. There is another makefile inside the include directory. The second makefile uses the include keyword to call some other makefiles in other projects which I have no control over it. I cannot…
Javad
  • 313
  • 3
  • 13
1 2 3
4