view test/plain_c++/Makefile.embedded @ 348:da4b267c10bf r1.1-RC3

- test code fixes and cleanups for win 32
author Tassilo Philipp
date Wed, 08 Jan 2020 17:23:24 +0100
parents 3e629dc19168
children
line wrap: on
line source

APP      = plain_c++
OBJS     = test_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}