Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Makefile « x86 « checkasm « tests - github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0254c6193532f0ba72bf2ab76be0304d08e7b289 (plain)
1
2
3
4
5
6
CHECKASMOBJS-$(HAVE_YASM) += x86/checkasm.o

tests/checkasm/x86/%.o: tests/checkasm/x86/%.asm
	$(DEPYASM) $(YASMFLAGS) -I $(<D)/ -M -o $@ $< > $(@:.o=.d)
	$(YASM) $(YASMFLAGS) -I $(<D)/ -o $@ $<
	-$(STRIP) $(STRIPFLAGS) $@