view test/callf/Makefile.embedded @ 600:d9558c1555df

test/callf: dcNewAggr() calls param fixes, used wrong field count
author Tassilo Philipp
date Wed, 21 Sep 2022 10:52:05 +0200
parents 3e629dc19168
children
line wrap: on
line source

APP = callf
OBJS = main.o

TOP      = ../..
CFLAGS  += -I${TOP}/dyncall
LDFLAGS += -L${TOP}/dyncall
LDLIBS  += -ldyncall_s

all: ${APP}

.PHONY: all clean

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

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