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.

Makefile 267B

12345678910111213141516
  1. prefix=/usr/local
  2. # files that need mode 755
  3. EXEC_FILES=pert
  4. all:
  5. @echo "usage: make install"
  6. @echo " make uninstall"
  7. install:
  8. install -m 0755 $(EXEC_FILES) $(prefix)/bin
  9. uninstall:
  10. test -d $(prefix)/bin && \
  11. cd $(prefix)/bin && \
  12. rm -f $(EXEC_FILES)