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=event_base_new \
9  -Wl,--wrap=event_base_dispatch \
10  -Wl,--wrap=event_new \
11  -Wl,--wrap=event_add
12 
13 include ../test_targets.mk