Skip to content
Snippets Groups Projects
Commit ade13eae authored by Giovanni Bussi's avatar Giovanni Bussi
Browse files

Fixed Makefile

It was (sometime) giving problems when using "make -j xx" with
large xx, because of interdependencies between test/ and src/
Now src/ is compiled first
parent 5ad2db2c
No related branches found
No related tags found
No related merge requests found
...@@ -11,7 +11,9 @@ SUBDIRSCLEAN=$(addsuffix .clean,$(SUBDIRS)) ...@@ -11,7 +11,9 @@ SUBDIRSCLEAN=$(addsuffix .clean,$(SUBDIRS))
# if machine dependent configuration has been found: # if machine dependent configuration has been found:
ifdef GCCDEP ifdef GCCDEP
all: $(SRCDIRS) all:
$(MAKE) lib
$(MAKE) -C test
lib: lib:
$(MAKE) -C src $(MAKE) -C src
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment