summaryrefslogtreecommitdiff
path: root/tests/port/GNUmakefile
blob: a51a8ec45923b5f9d950729bbcdbe5a10be7c3a6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
TOPDIR = ../..

INCLUDE_LIBS = \
	$(TOPDIR)/src/libwolf.a

INCLUDE_DIRS = \
	-I$(TOPDIR)/include/wolf -I. -I$(TOPDIR)/src

TEST_BINS = \
	test_strdup$(EXE) \
	test_strerror_r$(EXE) \
	test_strcasecmp$(EXE) \
	test_strncasecmp$(EXE)

-include $(TOPDIR)/makefiles/gmake/sub.mk

local_all:
	
local_clean:

local_distclean:

local_test:
	@echo "Testing strdup.."
	@./test_strdup >/dev/null
	@echo "Testing strerror_r..."
	@./test_strerror_r >/dev/null
	@echo "Testing strcasecmp.."
	@./test_strcasecmp >/dev/null
	@echo "Testing strncasecmp.."
	@./test_strncasecmp >/dev/null