Branch
Hash :
839078f3
Author :
Thomas de Grivel
Date :
2023-01-17T10:51:23
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60
## rtbuf
## Copyright 2018-2023 kmx.io <contact@kmx.io>
##
## Permission is hereby granted to use this software excepted
## on Apple computers granted the above copyright notice and
## this permission paragraph are included in all copies and
## substantial portions of this software.
##
## THIS SOFTWARE IS PROVIDED "AS-IS" WITHOUT ANY GUARANTEE OF
## PURPOSE AND PERFORMANCE. IN NO EVENT WHATSOEVER SHALL THE
## AUTHOR BE CONSIDERED LIABLE FOR THE USE AND PERFORMANCE OF
## THIS SOFTWARE.
build:
${MAKE} -C ${PWD}/librtbuf
${MAKE} -C ${PWD}/lib
${MAKE} -C ${PWD}/cli
${MAKE} -C ${PWD}/gtk3
all:
${MAKE} -C ${PWD}/librtbuf all
${MAKE} -C ${PWD}/lib all
${MAKE} -C ${PWD}/cli all
${MAKE} -C ${PWD}/gtk3 all
clean:
${MAKE} -C ${PWD}/librtbuf clean
${MAKE} -C ${PWD}/lib clean
${MAKE} -C ${PWD}/cli clean
${MAKE} -C ${PWD}/gtk3 clean
debug:
${MAKE} -C ${PWD}/librtbuf debug
${MAKE} -C ${PWD}/lib debug
${MAKE} -C ${PWD}/cli debug
${MAKE} -C ${PWD}/gtk3 debug
doc:
doxygen doxygen.conf
install:
${MAKE} -C ${PWD}/librtbuf install
${MAKE} -C ${PWD}/lib install
${MAKE} -C ${PWD}/cli install
${MAKE} -C ${PWD}/gtk3 install
install-debug:
${MAKE} -C ${PWD}/librtbuf install-debug
${MAKE} -C ${PWD}/lib install-debug
${MAKE} -C ${PWD}/cli install-debug
${MAKE} -C ${PWD}/gtk3 install-debug
licence:
update_header config.subr ${RTBUF_CONFIGURES}
update_header Makefile ${RTBUF_MAKEFILES}
update_header librtbuf/rtbuf.h ${RTBUF_C_SOURCES}
.PHONY: all build clean doc install install-debug
include config.mk