Commit cce5f3a5 authored by Federico Vaga's avatar Federico Vaga

Merge branch '10-make-the-root-makefile-uniform-with-other-projects' into 'master'

Resolve "Make the root makefile uniform with other projects"

Closes #10

See merge request be-cem-edl/fec/hardware-modules/fmc!5
parents 2faa5be7 fa579034
Pipeline #4909 failed
......@@ -9,6 +9,12 @@ DIRS = $(C_DIRS) \
Documentation/fmc
all clean cleanall install: $(DIRS)
clean: TARGET = clean
cleanall: TARGET = cleanall
install: TARGET = install
$(DIRS):
$(MAKE) -C $@ $(TARGET)
modules modules_install:
@$(MAKE) -C drivers/fmc/ $@
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment