libretro-genode/app/hello-world/Tupfile
Emery Hemingway a853c0d5e0 Update
- Automatic package versions
- Generate Makefile for creating signed packages
- Build with x86_64 variant by default
- Add Nim example
- Runtime schema fixes
2019-04-27 19:57:37 +02:00

21 lines
399 B
Plaintext

TARGET_NAME = hello-world
include_rules
PKG_CONFIGS = genode-base genode-prg
CXXFLAGS += `$(PKG_CONFIG) -cflags $(PKG_CONFIGS)`
LDFLAGS += `$(PKG_CONFIG) -libs $(PKG_CONFIGS)`
: foreach *.cc |> !cxx |> %B.o {objs}
: {objs} |> !ld |> %d {binary}
: {binary} |> !collect_bin |>
PKG_DEPENDS += \
_/src/$(BIN_NAME) \
: runtime |> !collect_pkg_runtime |>
include $(BIN_RULES)
include $(PKG_RULES)