diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..87bc984 --- /dev/null +++ b/Makefile @@ -0,0 +1,8 @@ +subdirs= website/ server/ + +# for now we just build everything normally +all: + for dir in $(subdirs);do \ + $(MAKE) -C $$dir; \ + done +