libamxrt  0.4.2
Ambiorix Run Time Library
makefile
Go to the documentation of this file.
1 include ../test_defines.mk
2 
3 TARGET = run_test
4 SOURCES += $(wildcard ./*.c)
5 OBJECTS = $(addprefix $(OBJDIR)/,$(notdir $(SOURCES:.c=.o)))
6 
7 LDFLAGS += -g \
8  -Wl,--wrap=amxb_be_load_multiple \
9  -Wl,--wrap=amxb_connect \
10  -Wl,--wrap=amxb_listen \
11  -Wl,--wrap=amxb_get_fd \
12  -Wl,--wrap=amxb_free \
13  -Wl,--wrap=amxb_register \
14  -Wl,--wrap=amxb_read \
15  -Wl,--wrap=amxb_wait_for_object \
16  -Wl,--wrap=setpriority \
17  -Wl,--wrap=daemon
18 
19 include ../test_targets.mk