summaryrefslogtreecommitdiffstats
path: root/test/module.rules
blob: 34004b97fb3d1509a970ae608a898529b5934c32 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
$(eval $(call import.MODULE.rules,TEST))

test.build: $(TEST.exe)

$(TEST.exe): | $(dir $(TEST.exe))
$(TEST.exe): $(TEST.c.o)
	$(call TEST.GCC.EXE++,$@,$^ $(TEST.libs))

$(TEST.c.o): $(LIBHB.a)
$(TEST.c.o): | $(dir $(TEST.c.o))
$(TEST.c.o): $(BUILD/)%.o: $(PROJECT/)%.c
	$(call TEST.GCC.C_O,$@,$<)

test.clean:
	$(RM.exe) -f $(TEST.out)

###############################################################################

build: test.build
clean: test.clean