lw-build-system/scripts/build.header.c/build.install-header
Laurence Withers 7a4adc3550 Add build.header.c
A new module type for creating just a header file. This is useful for e.g.
shared interfaces and so on which are not backed by a library.
2011-04-07 15:17:51 +00:00

12 lines
318 B
Bash

build_target @NAME@
# make paths (this is for Gentoo in particular)
build_dir_tree "${INCLUDEDIR}" || return 1
# install header
echo "Installing header file '${@CNAME@_HEADER}' into ${INCLUDEDIR}"
install_header ${@CNAME@_HEADER} ${INCLUDEDIR} 0644 || return 1
print_success "Done"
# vim: syntax=sh:@VIM_MODELINE@