BarryServer : Git

All the code for all my projects
// BarryServer : Git / OrionDesktop / blob / 535aa6298753c88a7d809227cf64962f7924543b / Makefile

// Related

OrionDesktop

Barry Initial commit 535aa62 (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;)