blob: 2a18db9b4f9c56de5449555e17ae32f4550f6f38 (
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
|
$(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
###############################################################################
## avoid installing CLI on darwin
ifneq ($(BUILD.system),darwin)
install: test.install
test.install: | $(dir $(TEST.install.exe))
$(CP.exe) $(TEST.exe) $(TEST.install.exe)
endif
|