- Timestamp:
- Aug 27, 2006, 5:15:15 PM (19 years ago)
- Location:
- branches/libc-0.6/src/libctests/libc
- Files:
-
- 4 added
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/libc-0.6/src/libctests/libc/Makefile
r2651 r2788 1 1 # $Id$ 2 3 4 # default rule 2 3 4 # default rule 5 5 all: tests-logged 6 6 … … 60 60 smoketests/access-1.c \ 61 61 smoketests/alloca-1.c \ 62 smoketests/atexit-1.c \ 62 63 smoketests/builtin-1.c \ 63 64 smoketests/fork-1.c \ 64 65 smoketests/fork-2.c \ 66 smoketests/fork-3.c \ 65 67 smoketests/fsinternals-1.c \ 66 68 smoketests/fsinternals-2.c \ … … 99 101 smoketests/basename-dirname-1.c \ 100 102 smoketests/fcloseall-1.c 101 103 102 104 # smoketests/weak-export-1.c - dll 103 105 104 106 smoketests/64bitio-1.c_ARGS = $(OUTDIR)/smoketests/2gb.file 105 107 smoketests/alloca-1.c_LDFLAGS = -Zstack 1024 108 smoketests/atexit-1.c_DEPS = $(OUTDIR)/smoketests/atexit-1.dll 109 smoketests/fork-3.c_DEPS = $(OUTDIR)/smoketests/fork-3.dll 106 110 smoketests/fsinternals-1.c_CFLAGS = -I ../../emx/src/lib 107 111 smoketests/fsinternals-1.c_LDFLAGS = -Zomf -static -lc_omf386 … … 114 118 smoketests/embryo-1.c_DEPS = $(OUTDIR)/smoketests/asmstub-omf.exe 115 119 smoketests/embryo-1.c_ARGS = $(ABSOUTDIR)/smoketests/asmstub-omf.exe 116 120 117 121 $(OUTDIR)/smoketests/asmstub.exe: smoketests/asmstub.S 118 122 mkdir -p $(dir $@) … … 124 128 emxomf -m__text -o $(OUTDIR)/smoketests/asmstub-omf.obj $(OUTDIR)/smoketests/asmstub-omf.o 125 129 gcc -Zomf -lend -s -nostdlib -o $@ $(OUTDIR)/smoketests/asmstub-omf.obj 126 130 131 $(OUTDIR)/smoketests/atexit-1.dll: smoketests/atexit-1-dll.c Makefile 132 mkdir -p $(dir $@) 133 gcc -shared $(CFLAGS) -o $@ $< 134 135 $(OUTDIR)/smoketests/fork-3.dll: smoketests/fork-3-dll.c Makefile 136 mkdir -p $(dir $@) 137 gcc -shared $(CFLAGS) -o $@ $< 138 139 127 140 SUBTESTS := \ 128 141 SMOKETESTS \ 129 142 BUGS 130 143 131 144 .SUFFIXES: 132 .SUFFIXES: .c .exe .result 145 .SUFFIXES: .c .exe .result 133 146 134 147 … … 164 177 echo "FAILURE - $$(CC) $$(CFLAGS) -o $(OUTDIR)/$2.exe $($(1)_CFLAGS) $($(1)_LDFLAGS) $$<" > $$@; \ 165 178 fi 166 179 167 180 $2: $(OUTDIR)/$2.result 168 181 @ 169 182 170 183 _TESTS += $(OUTDIR)/$2.result 171 184 $(eval _$(TEST) += $(OUTDIR)/$2.result) … … 211 224 212 225 # 213 # generate directory rules 226 # generate directory rules 214 227 # 215 228 define def_dir
Note:
See TracChangeset
for help on using the changeset viewer.