Tagged Questions
0
votes
0answers
20 views
How to run a specific comment on error in makefile
I have a makefile, and i like to run "beep" or better "paplay xxxxx" when the lessc compiler has a error. Is this possible?
DATE=$(shell date +%I:%M%p)
CHECK=\033[32m✔\033[39m
...
0
votes
1answer
202 views
Bash is abnormal in Makefile!
all,
I have found that the same Makefile works well in Mac OS X, but does not work in Ubuntu. The snippet is as following:
start:
@echo $(seperator)
@if [[ "$(PROJECT)" == "" ]]; then \
...