Makefile查漏补缺

1 、基本框架

 

test.c:


 

#include



int main(void){



        std::cout<<"hello world"<
 

 

Makefile:

APP=myapp

COMPILER=g++



all : $(APP)





$(APP) : test.o

        $(COMPILER) -o $(APP) test.o



test.o : test.c

        $(COMPILER) -c test.c

 

 

 

命令:

make

./myapp

 

你可能感兴趣的:(基础查漏补缺)