view test/callf/Makefile.embedded @ 587:fbd5e5416a4b

Added tag r1.4-RC2 for changeset b26a2a4e1daa
author Tassilo Philipp
date Thu, 15 Sep 2022 18:11:48 +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}