guowenxue@gmail.com
9 days ago 840948bfbb6a79a7caf6ec2071e3de430a72b1d8
1
2
3
4
5
6
7
8
9
10
 
APP_NAME=hello-app
 
# Must add LDFLAGS, or Yocto will complain about missing GNU_HASH
${APP_NAME}:
    ${CC} -o $@ $@.c ${LDFLAGS}
 
.PHONY: clean
clean:
    rm -rf ${APP_NAME}