我有一个简单的Makefile:
a:
touch a
b: a
touch b
all: b
touch myappmake all返回:
touch a
touch b
touch myappclearmake all (或clearmake -C gnu all)返回:
touch a
touch b
touch myapp如何去除不必要的换行符?
发布于 2015-06-25 11:31:36
https://stackoverflow.com/questions/31048536
复制相似问题