Skip to content
Snippets Groups Projects
Makefile 135 B
Newer Older
  • Learn to ignore specific revisions
  • # Makefile for qosmngr
    
    subdirs ?= src
    
    .PHONY: all clean
    
    all clean:
    	@for i in $(subdirs) ; do [ -d $$i ] && $(MAKE) -C $$i $@; done