BarryServer : Git

All the code for all my projects
// BarryServer : Git / OrionUserland / blob / 2e110925c3be315a94bfbf15cecbdaa0746bfe32 / Makefile

// Related

OrionUserland

Barry Importing existing Orion Userland 19aefaa (2 years, 4 months ago)
PROGS=$(shell basename -a $(shell find . -mindepth 1 -maxdepth 1 -type d -not -path '*/.*'))

.PHONY: clean all install

all:
	@$(foreach prog,$(PROGS),$(MAKE) -s -C $(prog);)

clean:
	@$(foreach prog,$(PROGS),$(MAKE) -s -C $(prog) clean;)

install:
	@$(foreach prog,$(PROGS),$(MAKE) -s -C $(prog) install;)