Programming/Linux Coding

Ex10. Makefile - lv4

푸어맨 2016. 2. 25. 10:52

매크로 치환


# make dep
gccmakedep test.c hello.c
# make
gcc -I/home/ysw/study -g -c test.c
gcc -I/home/ysw/study -g -c hello.c
gcc -lm -o test test.o hello.o