컴공생의 다이어리

[c/c++] Ubuntu Makefile 만들기 본문

Development/C & C++

[c/c++] Ubuntu Makefile 만들기

컴공 K 2021. 6. 1. 00:01

Ubuntu에서 c와 c++ Makefile 만들기

test1.c와 test2.cpp가 아래와 같이 있다고 가정한다!

//test1.c
#include <stdio.h>
int main(){
	printf("test1 HELLO~!\n");
	return 0;
}
//test2.cpp
#include <iostream>
using namespace std;
int main(){
	cout<<"test2 HELLO~!"<<endl;
	return 0;
}

 

이 두개의 파일을 실행파일로 만들기 위한 Makefile은 아래와 같다.

 

 

그리고 나서 make 명령어를 입력하고 실행시켜보면 아래와 같다.

728x90
Comments