8

I have a Makefile for a Latex project I'm working on. Makefiles aren't my forte, but is there a way to do something like:

make git "My comment"

And have the makefile execute:

git commit -m "My comment"
git push origin master

?

2 Answers 2

10

You could use a variable and read it from within the Makefile. Example:

git:
    git commit -m "$m"

Then you can commit with: make git m="My comment".

7

You could call it like

make git-"My comment"

and write a pattern rule for git-%:

git-%: 
        git commit -m "$(@:git-%=%)"
        git push origin master

You must log in to answer this question.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.