diff --git a/alliance/src/documentation/tutorials/Makefile b/alliance/src/documentation/tutorials/Makefile new file mode 100644 index 00000000..9c2e5719 --- /dev/null +++ b/alliance/src/documentation/tutorials/Makefile @@ -0,0 +1,19 @@ +ALL_DIRS = simulation/src simulation/tex synthesis/src synthesis/tex place_and_route/src place_and_route/tex + + + +all : + @for FILE in $(ALL_DIRS) ;\ + do $(MAKE) -C $$FILE ;\ + if [ $$? -ne 0 ] ;\ + then exit 1 ;\ + fi ;\ + done + +% : + @for FILE in $(ALL_DIRS) ;\ + do $(MAKE) -C $$FILE $@ ;\ + if [ $$? -ne 0 ] ;\ + then exit 1 ;\ + fi ;\ + done