1
0
mirror of https://github.com/ioacademy-jikim/debugging synced 2025-06-08 16:36:21 +00:00
2015-12-13 22:34:58 +09:00

8 lines
205 B
Plaintext

# makefile1
# 아래 코드를 먼저 보여 주고.
# 문제점으로 app.h 안에있는 #define MAX 100이 변경될경우
# 다시 컴파일 되지 않는다는 것을 이야기 할것.
# 그리고 makefile2를 수업.
app: app.c
cc -o app app.c -I .