I have this very basic makefile:
CC=gcc
CFLAGS=-Wall -g -O -pedantic -Wformat=2 -Wextra -lm
And actually it compile foo.c to foo. How can I add a custom extension, for example I want it to compile foo.c in foo.run.
Thank you very much.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Add this to your
makefile:Make sure the second line starts with a tab character, not spaces. Then check out the manual page or other documentation for your version of make.