INC = -I. SRCS = myfirst.cpp myfirstinst.cpp myfirstmain.cpp OBJSS = myfirst.o myfirstinst.o myfirstmain.o TARGET = myfirst all : $(TARGET) $(TARGET) : g++ -o $(TARGET) $(SRCS) $(INC) clean : rm -f $(OBJS) $(TARGET) new : $(MAKE) clean $(MAKE)
'프로그램언어 > C++' 카테고리의 다른 글
유닉스 계열 정보 얻어 오기. (0) | 2010.04.19 |
---|---|
간단한 C++ 매크로 만들어보기. (0) | 2010.04.15 |
gdb을 이용한 디버깅 방법 [ STL 디버깅 ] (0) | 2010.01.15 |
클래스의 데이터의 값을 string으로 반환해서 받기. (0) | 2009.12.08 |
[Socket] bind socket error (0) | 2009.10.06 |