guowenxue
2024-07-15 17e72682044b54e27f2bbb53ced773a711527e56
commit | author | age
17e726 1
G 2 APP_NAME=hello-app
3
4 # Must add LDFLAGS, or Yocto will complain about missing GNU_HASH
5 ${APP_NAME}:
6     ${CC} -o $@ $@.c ${LDFLAGS}
7
8 .PHONY: clean
9 clean:
10     rm -rf ${APP_NAME}