Subversion Repositories tendra.SVN

Rev

Rev 38 | Blame | Compare with Previous | Last modification | View Log | RSS feed


SUBDIRS = disp tcc tld tnc tpl tspec

all:
        @for f in $(SUBDIRS) ; do \
                echo "==> Building $$f" ; \
                cd $$f && $(MAKE) && cd .. || exit 1; \
                echo "==> Build done " ; \
        done

clean:
        @for f in $(SUBDIRS) ; do \
                cd $$f && $(MAKE) clean && cd .. ; \
        done

install:
        @for f in $(SUBDIRS) ; do \
                echo "==> Installing $$f ... " ;\
                cd $$f && $(MAKE) && $(MAKE) install && cd .. ; \
                echo "==> Install done " ; \
        done