C++第二个项目实现(九)

2014-11-24 12:08:19 · 作者: · 浏览: 6
SOURCE:.cpp=.o}
$(EXE): ${OBJECTS}
g++ $(CFLAGS) -o $@ $(OBJECTS)

all: $(EXE)

clean:
rm $(EXE) *.o

### End of the Makefile ## Suggestions are welcome ## All rights reserved ###


摘自 asdfqwer1314的专栏