annotate 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 (2022-09-04) |
parents |
3e629dc19168 |
children |
|
rev |
line source |
0
|
1 APP = malloc_wx
|
|
2 OBJS = test_wx.o
|
|
3
|
|
4 TOP = ../..
|
|
5 CFLAGS += -I${TOP}/dyncallback -I${TOP}/dyncall
|
|
6 LDFLAGS += -L${TOP}/dyncallback
|
|
7 LDLIBS += -ldyncallback_s
|
|
8
|
|
9 all: ${APP}
|
|
10
|
|
11 .PHONY: all clean
|
|
12
|
|
13 ${APP}: ${OBJS}
|
|
14 ${CC} ${OBJS} ${LDFLAGS} ${LDLIBS} -o ${APP}
|
|
15
|
|
16 clean:
|
|
17 rm -f ${APP} ${OBJS}
|
|
18
|