我有一个简单的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
更改clearmake (或clearmake -C gnu)的输出的可能性不大
(-n只打印命令,-s不打印)
这给你留下了一些解决办法,比如:
clearmake all | grep -v '^$' https://stackoverflow.com/questions/31048536
复制相似问题