comparison test/callback_plain_c++/Makefile.embedded @ 545:ca28e9e3c644

- test/callback_plain_c++, to test C++ non-trivial aggrs by value, as well as method callback handlers - Changelog
author Tassilo Philipp
date Tue, 31 May 2022 18:35:06 +0200
parents
children b36a738c8975
comparison
equal deleted inserted replaced
544:111236b31c75 545:ca28e9e3c644
1 APP = callback_plain_c++
2 OBJS = test_main.o
3
4 SRCTOP = ../..
5 BLDTOP = ${SRCTOP}
6 CFLAGS += -I${SRCTOP}/dyncall
7 LDFLAGS += -L${BLDDIR}/dyncallback
8 LDLIBS += -ldyncallback_s -ldyncall_s
9
10 all: ${APP}
11
12 .PHONY: all clean install
13
14 ${APP}: ${OBJS}
15 ${CC} ${OBJS} ${LDFLAGS} ${LDLIBS} -o ${APP}
16
17 clean:
18 rm -f ${APP} ${OBJS}
19