Advertisement
Guest User

Makefile

a guest
Jul 23rd, 2019
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Make 1.12 KB | None | 0 0
  1. .PHONY:
  2. .DEFAULT: main
  3. main:
  4.     @echo "make export-worker-service"
  5.     @echo "make answers-service-repo"
  6.     @echo "make fields-service-repo"
  7.     @echo "make api-gateway-repo"
  8.     @echo "make export-service-repo"
  9.     @echo "make groups-service-repo"
  10.     @echo "make users-service-repo"
  11.     @echo "make form-service-repo"
  12.     @echo "make client-ui-repo"
  13.  
  14.  
  15. export-worker-service:
  16.     git clone https://github.com/lv-412-python/export-worker-service.git
  17. answers-service-repo:
  18.     git clone https://github.com/lv-412-python/answers-service-repo.git
  19. fields-service-repo:
  20.     git clone https://github.com/lv-412-python/fields-service-repo.git
  21. api-gateway-repo: -
  22.     git clone https://github.com/lv-412-python/api-gateway-repo.git
  23. export-service-repo:
  24.     git clone https://github.com/lv-412-python/export-service-repo.git
  25. groups-service-repo:
  26.     git clone https://github.com/lv-412-python/groups-service-repo.git
  27. users-service-repo:
  28.     git clone https://github.com/lv-412-python/users-service-repo.git
  29. form-service-repo:
  30.     git clone https://github.com/lv-412-python/form-service-repo.git
  31. client-ui-repo:
  32.     git clone https://github.com/lv-412-python/client-ui-repo.git
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement