-
-
Notifications
You must be signed in to change notification settings - Fork 85
Expand file tree
/
Copy pathmmakefile.src
More file actions
89 lines (74 loc) · 1.76 KB
/
Copy pathmmakefile.src
File metadata and controls
89 lines (74 loc) · 1.76 KB
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
# Copyright (C) 2003-2021, The AROS Development Team. All rights reserved.
include $(SRCDIR)/config/aros.cfg
USER_CFLAGS += -DADATE="\"$(shell date '+%d.%m.%Y')\""
CUNITEXEDIR := $(AROS_TESTS)/cunit/dos
EXEDIR := $(AROS_TESTS)/dos
FILES := \
addpart \
clicreatenewproc \
consolemodes \
doslist \
dosvartest \
examine \
examinefh \
exnext \
filetest \
fread \
fstest \
getenv \
inhibit \
isinteractive \
lockrelative \
match \
matchtest \
minicat \
mountlist \
namefromfh \
nil \
notify \
openfromlock \
output \
r \
rawtest \
readargs \
readitem \
readitemloop \
runcommand \
rwverify \
scantest \
scanvarstest \
seektest \
setfiledate \
setenv \
setfilesize \
strtodate \
systemtags \
systemtags_slave \
systemtags2 \
systemtags2_slave \
waitforchar
PURE_FILES := \
exit \
isfilesystem
CUNITSTDCTESTFILES := \
cunit-dos-fileseek \
cunit-dos-readargs
#MM- test : test-dos
#MM- test-quick : test-dos-quick
#MM- test-dos : test-dos-common test-dos-pure test-dos-cunit
#MM- test-dos-quick : test-dos-common-quick test-dos-pure-quick test-dos-cunit-quick
#MM- test-cunit : test-dos-cunit
#MM- test-cunit-quick : test-dos-cunit-quick
#MM test-dos-common : includes linklibs
%build_progs mmake=test-dos-common \
files=$(FILES) targetdir=$(EXEDIR)
%build_progs mmake=test-dos-pure \
files=$(PURE_FILES) targetdir=$(EXEDIR) \
usestartup="no"
USER_INCLUDES := -I$(AROS_CONTRIB_INCLUDES)
USER_CFLAGS := $(CFLAGS_NO_BUILTIN)
USER_LDFLAGS := -L$(AROS_CONTRIB_LIB)
%build_progs mmake=test-dos-cunit \
files=$(CUNITSTDCTESTFILES) targetdir=$(CUNITEXEDIR) \
uselibs="cunit"
%common