diff options
Diffstat (limited to 'data/Makefile')
-rw-r--r-- | data/Makefile | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/data/Makefile b/data/Makefile new file mode 100644 index 0000000..768a346 --- /dev/null +++ b/data/Makefile @@ -0,0 +1,12 @@ +SUBDIRS=frames + +recursive=all clean install + +all: + +$(recursive): + @target=$@ ; \ + for subdir in $(SUBDIRS); do \ + echo "Making $$target in $$subdir" ; \ + $(MAKE) -C $$subdir $$target; \ + done |