diff options
author | Mans Rullgard <mans@mansr.com> | 2011-05-28 13:10:01 +0100 |
---|---|---|
committer | Mans Rullgard <mans@mansr.com> | 2011-05-29 12:36:16 +0100 |
commit | 798b26467877007418d21722d59c769d17ed7233 (patch) | |
tree | 80ac81093517182021e1c73b8cd0663a7b2ffb6a /Makefile | |
parent | 42761122779dea2629cfc54a8bbe5d327e729c6e (diff) | |
download | ffmpeg-798b26467877007418d21722d59c769d17ed7233.tar.gz |
build: remove BUILD_ROOT variable
This variable is unnecessary as absolute paths are not required.
Signed-off-by: Mans Rullgard <mans@mansr.com>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -202,15 +202,15 @@ ffservertest: ffserver$(EXESUF) tests/vsynth1/00.pgm tests/data/asynth1.sw tests/vsynth1/00.pgm: tests/videogen$(HOSTEXESUF) @mkdir -p tests/vsynth1 - $(M)$(BUILD_ROOT)/$< 'tests/vsynth1/' + $(M)./$< 'tests/vsynth1/' tests/vsynth2/00.pgm: tests/rotozoom$(HOSTEXESUF) @mkdir -p tests/vsynth2 - $(M)$(BUILD_ROOT)/$< 'tests/vsynth2/' $(SRC_PATH)/tests/lena.pnm + $(M)./$< 'tests/vsynth2/' $(SRC_PATH)/tests/lena.pnm tests/data/asynth1.sw: tests/audiogen$(HOSTEXESUF) @mkdir -p tests/data - $(M)$(BUILD_ROOT)/$< $@ + $(M)./$< $@ tests/data/asynth1.sw tests/vsynth%/00.pgm: TAG = GEN |