各位各位:小弟初来乍到。刚学linux不久。
长话短说:
我很厌烦每次用cd命令切换到很远很远的子目录去。所以最近在学用makefile时发现可以使用shell命令,于是写了一个小makefile希望能用make直接跳转到希望目录下,我是这样做的:
#This is a simple shell which goes into the stl directory directly
DESTINATION = ./myprogram/C++/stl/stl_chapter2
goto:
cd ${DESTINATION}