dispatch make file

This commit is contained in:
shockrahwow 2019-11-12 17:10:05 -08:00
parent d3fd575b32
commit c4e0071a59

8
Makefile Normal file
View File

@ -0,0 +1,8 @@
subdirs= website/ server/
# for now we just build everything normally
all:
for dir in $(subdirs);do \
$(MAKE) -C $$dir; \
done