summaryrefslogtreecommitdiff
path: root/tests/threads/GNUmakefile
blob: c3a4fb534e713c040da8b7f45a688763072ea69e (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
TOPDIR = ../..

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

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

TEST_BINS = \
	test_create_join$(EXE) \
	test_counter_mutex$(EXE)

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

local_all:
	
local_clean:

local_distclean:

local_test:
	@echo "Testing creating, joining of threads.."
	@./test_create_join >/dev/null
	@echo "Testing mutex.."
	@./test_counter_mutex >/dev/null