view test/callback_plain/Makefile.embedded @ 547:917d5d213815

- integrate test/callback_plain_c++ into main build
author Tassilo Philipp
date Tue, 31 May 2022 19:59:10 +0200
parents 71c884e610f0
children
line wrap: on
line source

APP = callback_plain
OBJS = callback_plain.o

SRCTOP   = ../..
BLDTOP   = ${SRCTOP}
CFLAGS  += -I${SRCTOP}/dyncall
LDFLAGS += -L${BLDDIR}/dyncallback
LDLIBS  += -ldyncallback_s -ldyncall_s

all: ${APP}

.PHONY: all clean install

${APP}: ${OBJS} 
	${CC} ${OBJS} ${LDFLAGS} ${LDLIBS} -o ${APP} 

clean:
	rm -f ${APP} ${OBJS}