annotate test/malloc_wx/Makefile.embedded @ 324:dd78bd0152af
- removal of never-adopted mini-test framework stub
- test/plain: better output and cleanup
- test/plain_c++: better output and re-enabled this calls for other platforms than windows (was disabled by mistake)
| author |
Tassilo Philipp |
| date |
Thu, 21 Nov 2019 12:50:37 +0100 |
| 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
|