view test/ellipsis/Makefile.embedded @ 417:237023a0b6f8 r1.3-RC2

- version bump in manual
author Tassilo Philipp
date Thu, 16 Dec 2021 16:13:03 +0100
parents 3e629dc19168
children
line wrap: on
line source

APP  = ellipsis
OBJS = ellipsis.o main.o

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

all: ${APP}

.PHONY: all clean install

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

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