diff options
Diffstat (limited to 'test/module.defs')
-rw-r--r-- | test/module.defs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/test/module.defs b/test/module.defs index 3eda79509..a0ab7d000 100644 --- a/test/module.defs +++ b/test/module.defs @@ -14,6 +14,8 @@ TEST.libs = $(LIBHB.a) $(foreach n, \ ogg samplerate swscale theora vorbis vorbisenc x264 xvidcore, \ $(CONTRIB.build/)lib/lib$(n).a ) +TEST.install.exe = $(INSTALL.prefix/)bin/$(notdir $(TEST.exe)) + ## add libs from optional modules ifeq (1,$(BZIP2.enabled)) TEST.libs += $(CONTRIB.build/)lib/libbz2.a @@ -26,6 +28,7 @@ endif TEST.out += $(TEST.c.o) TEST.out += $(TEST.exe) +TEST.out += $(TEST.install.exe) BUILD.out += $(TEST.out) |