在Makefile執行shell指令 -- Makefile
Reference :
http://stackoverflow.com/questions/10024279/how-to-use-shell-commands-in-makefile
如何在Makefile上執行shell的指令,只要利用$(shell command)就可以了。
範例:
http://stackoverflow.com/questions/10024279/how-to-use-shell-commands-in-makefile
如何在Makefile上執行shell的指令,只要利用$(shell command)就可以了。
範例:
FILES := $(shell ls)
all:
echo $(FILES)
留言