-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmakefile
executable file
·34 lines (31 loc) · 872 Bytes
/
makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
DATE=`date +'%d/%m/%y'`
BRANCH=$(shell git branch | grep \* | cut -d ' ' -f2)
help:
@ echo "This file has the following tasks:-"
@ echo " eod - git commit with the message \"end of day \$Date\""
eod:
cd inference-tool/src/main/java/mintframework; \
git add -A ; \
git commit -m "end of day $(DATE)" ; \
git push origin master ; \
cd ../../../../../formal/EFSM; \
git add -A ; \
git commit -m "end of day $(DATE)" ; \
git push origin master ; \
cd ../../; \
git add -A ; \
git commit -m "end of day $(DATE)" ; \
git push origin $(BRANCH) ; \
commit:
cd inference-tool/src/main/java/mintframework; \
git add -A ; \
git commit -m "$m" ; \
git push origin master ; \
cd ../../../../../formal/EFSM; \
git add -A ; \
git commit -m "$m" ; \
git push origin master ; \
cd ../../; \
git add -A ; \
git commit -m "$m" ; \
git push origin $(BRANCH) ; \