拆分隐式 GNU make 规则
我有以下隐式规则:
CFLAGS=-I../tcp/ -I../libip_udp/ -g -Wall
LDLIBS=framework.o ../tcp/libtcp.a ../libip_udp/libip.a
%.run : %.c $(LDLIBS)
$(CC) $< $(LDLIBS) -o $@ $(CFLAGS)
./$@
如果我运行 make foo.run 它将编译 foo.c 并执行 foo.run。但是,第二次运行 make foo.run 不会执行任何操作。如何拆分隐式规则,使其在需要时进行编译,但始终运行?
I have the following implicit rule:
CFLAGS=-I../tcp/ -I../libip_udp/ -g -Wall
LDLIBS=framework.o ../tcp/libtcp.a ../libip_udp/libip.a
%.run : %.c $(LDLIBS)
$(CC) lt; $(LDLIBS) -o $@ $(CFLAGS)
./$@
If I run make foo.run
it will compile foo.c and execute foo.run. However, running make foo.run
a second time will not do anything. How can I split the implicit rule such that it compiles when needed, but runs always?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
例如:
现在运行它
For example:
Now just run it