view test/callback_plain_c++/Makefile.generic @ 587:fbd5e5416a4b

Added tag r1.4-RC2 for changeset b26a2a4e1daa
author Tassilo Philipp
date Thu, 15 Sep 2022 18:11:48 +0200
parents 09bf0470ed50
children ef356272a1c7
line wrap: on
line source

APP       = callback_plain_c++
OBJS      = test_main.o
SRCTOP    = ${VPATH}/../..
BLDTOP    = ../..
CXXFLAGS += -I${SRCTOP}/dyncall
LDLIBS   += -L${BLDTOP}/dyncallback -ldyncallback_s -L${BLDTOP}/dyncall -ldyncall_s
.PHONY: all clean install
all: ${APP}
${APP}: ${OBJS} 
	${CXX} ${CXXFLAGS} ${LDFLAGS} ${OBJS} ${LDLIBS} -o ${APP}
clean:
	rm -f ${APP} ${OBJS}
install:
	mkdir -p ${PREFIX}/test
	cp ${APP} ${PREFIX}/test