আমি একটি মেক ফাইল তৈরি করতে উদাহরণস্বরূপ পিজিএম দিয়ে যাচ্ছি।
http://mrbook.org/tutorials/make/
আমার ফোল্ডার যেমন_মেক_ক্রিয়েশনতে নিম্নলিখিত ফাইল রয়েছে,
desktop:~/eg_make_creation$ ls
factorial.c functions.h hello hello.c main.c Makefile
মেকফিল
# I am a comment, and I want to say that the variable CC will be
# the compiler to use.
CC=gcc
# Hwy!, I am comment no.2. I want to say that CFLAGS will be the
#options I'll pass to the compiler
CFLAGS=-c -Wall
all:hello
hello:main.o factorial.o hello.o
$(CC) main.o factorial.o hello.o -o hello
main.o:main.c
$(CC) $(CFLAGS) main.c
factorial.o:factorial.c
$(CC) $(CFLAGS) factorial.c
hello.o:hello.c
$(CC) $(CFLAGS) hello.c
clean:
rm -rf *o hello
ত্রুটি:
desktop:~/eg_make_creation$ make all
make: Nothing to be done for `all'.
এই প্রোগ্রামটি সংকলন করতে দয়া করে আমাকে বুঝতে সহায়তা করুন।