컴공생의 다이어리
[c/c++] Ubuntu Makefile 만들기 본문
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
'Development > C & C++' 카테고리의 다른 글
[c] (7,4)Hamming Code Encoder(인코더)와 Decoder(디코더) (0) | 2021.06.10 |
---|---|
[c] CRC(cyclic redundancy check, 순환 중복 검사) Encoder(인코더)와 Decoder(디코더) (0) | 2021.06.08 |
[c++] 원본 행렬(original matrix)과 전치 행렬(transposed matrix) (0) | 2021.03.28 |
[c/c++] 연산자 우선순위(Operator Priority) (0) | 2021.03.18 |
[c] scanf 데이터 입력 (0) | 2021.03.16 |
Comments