Clearcase make vs Gnu输出

时间:2015-06-25 11:03:13

标签: makefile clearcase gnu-make

我有这个简单的Makefile:

a:
        touch a

b: a
        touch b

all: b
        touch myapp

make all返回:

touch a
touch b
touch myapp

clearmake all(或clearmake -C gnu all)返回:

touch a

touch b

touch myapp

如何摆脱不必要的换行线?

1 个答案:

答案 0 :(得分:1)

更改clearmake(或clearmake -C gnu

的输出的可能性不大

Development仅打印命令,-n不打印命令)

这给你留下了类似的解决方法:

-s