-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
24 lines (19 loc) · 776 Bytes
/
Makefile
File metadata and controls
24 lines (19 loc) · 776 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# Nome do arquivo: Makefile
# Propósito : Simplifica e agiliza o desenvolvimento
# Autor : Victor Arnaud
# Data : 05/08/2019
# Ao executar o comando "make" executa make migrations e make migrate ao mesmo tempo
all: migrations migrate
# Phone target é usado quando o target não é um arquivo
# Se você tiver um arquivo com o mesmo nome do target, o
# comando irá rodar da mesma forma.
.PHONE: all
# DJANGO
include makefiles/django.mk
# DOCKER
include makefiles/docker.mk
# SHELL
# make <target>: Execute the commands inside the target
# make -f <filename> <target>: Execute Makefile with another name
# make <target> -n: Show the commands that will be executed by this target
# make <target> -s: Execute the commands without show the commands (silense)