Have you ever used Makefile ??😲 #168961
Closed
hibiki-shibata
started this conversation in
Discover
Replies: 1 comment
-
Welcome to the GitHub Community, @hibiki-shibata, we're happy you're here! You are more likely to get a useful response if you are posting your question(s) in the applicable category and are explicit about what your project entails--giving a few more details might help someone give you a nudge in the right direction. I've gone ahead and moved it for you. Good luck! |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Have you ever used Makefile?? Non?, then probably you should!🤓
This will be quite well-known stuff for seniors, but it was kinda revolution for me! So let me share😗
What can do:📚
How to Install:🔧
Mac OS -
brew install make
("make" is pre-installed by default, so you can use it without installing extra)
Linux -
sudo apt install make
How to use: 🙌
1. Move to your preferred directory where Makefile exist.
cd <your_arbitrary_directory>
2. Create a file called Makefile in the directory.
touch Makefile
3. Define commands in the Makefile file.
e.g.
4. Try "make" command 😎
-
make hello
-
make test
Command defined above will be executed and output there in command line! 🌸
This makes your daily tasks quite easy whatever the project is, isn't it?
Beta Was this translation helpful? Give feedback.
All reactions