Changeset 3633
- Timestamp:
- May 17, 2008, 5:04:17 PM (17 years ago)
- Location:
- trunk/libc/tests/libc
- Files:
-
- 4 added
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/libc/tests/libc/Makefile
r3628 r3633 136 136 gcc -Zomf -lend -s -nostdlib -o $@ $(OUTDIR)/smoketests/asmstub-omf.obj 137 137 138 $(OUTDIR)/smoketests/cstub.exe: smoketests/cstub.c 139 mkdir -p $(dir $@) 140 gcc -s -o $@ $^ 141 138 142 $(OUTDIR)/smoketests/atexit-1.dll: smoketests/atexit-1-dll.c Makefile 139 143 mkdir -p $(dir $@) … … 148 152 # I/O tests 149 153 # 150 151 154 IO := \ 152 155 io/open-1.c \ … … 157 160 158 161 162 # 163 # Benchmarks 164 # 165 BENCHMARKS := \ 166 benchmarks/spawn-1.c \ 167 benchmarks/spawn-1-libc.c 168 169 benchmarks/spawn-1.c_DEPS = $(OUTDIR)/smoketests/asmstub-omf.exe 170 benchmarks/spawn-1.c_ARGS = $(ABSOUTDIR)/smoketests/asmstub-omf.exe 171 172 benchmarks/spawn-1-libc.c_DEPS = $(OUTDIR)/smoketests/cstub.exe 173 benchmarks/spawn-1-libc.c_ARGS = $(ABSOUTDIR)/smoketests/cstub.exe 174 175 159 176 SUBTESTS := \ 160 177 SMOKETESTS \ 161 IO 178 IO \ 179 BENCHMARKS 180 162 181 163 182 .SUFFIXES:
Note:
See TracChangeset
for help on using the changeset viewer.