view test/callf/Makefile.embedded @ 455:68733edd9bd1

suite_aggrs: added all cases that failed on x64 dynOS test platforms to design.txt
author Tassilo Philipp
date Thu, 27 Jan 2022 15:04:48 +0100
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}