nexmon – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 AC_ROOT = ..
2 include $(AC_ROOT)/common.mak
3  
4 TEST_DIR = $(AC_ROOT)/test
5  
6 CFLAGS += -Iinclude
7  
8 all: test-hex_string_to_array
9  
10 test-hex_string_to_array:
11 $(CC) $(CFLAGS) $(LDFLAGS) test-hex_string_to_array.c ../src/common.c -o $(@) $(LDFLAGS)
12  
13 clean:
14 -rm -f test-hex_string_to_array.o test-hex_string_to_array$(EXE)
15  
16 check: all
17 ./test-hex_string_to_array.sh