PERT est une méthodologie de gestion de projet. Il s'agit d'un fork du programme bash qui permet d'afficher les tâches et les prévisions individuels et cumulés :
https://github.com/arzzen/pert
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12345678910111213141516 |
- prefix=/usr/local
-
- # files that need mode 755
- EXEC_FILES=pert
-
- all:
- @echo "usage: make install"
- @echo " make uninstall"
-
- install:
- install -m 0755 $(EXEC_FILES) $(prefix)/bin
-
- uninstall:
- test -d $(prefix)/bin && \
- cd $(prefix)/bin && \
- rm -f $(EXEC_FILES)
|