13 lines
301 B
Makefile
13 lines
301 B
Makefile
#
|
|
# Hello World Makefile
|
|
#
|
|
|
|
# Common Compiler Flags ########################################################
|
|
|
|
# Include paths.
|
|
COMMON_CFLAGS += -Iapps/hello_world/include
|
|
|
|
# Common Source Files ##########################################################
|
|
|
|
COMMON_SRCS += apps/hello_world/hello_world.cc
|