view test/malloc_wx/Makefile.embedded @ 565:d1fa4b5a41f7

- Makefile show-tool-versions target: use more portable -V flag for version number output (works with lld & gnu ld, required for solaris ld)
author Tassilo Philipp
date Sun, 04 Sep 2022 10:36:51 +0200
parents 3e629dc19168
children
line wrap: on
line source

APP = malloc_wx
OBJS = test_wx.o

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

all: ${APP}

.PHONY: all clean 

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

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