From: gn64_jp Date: Wed, 29 May 2013 09:58:12 +0000 (+0900) Subject: fix make loop bug. X-Git-Url: http://git.osdn.net/view?p=rec10%2Frec10-git.git;a=commitdiff_plain;h=60a21c3f0efe161bee7f108827e459753cceaf3d fix make loop bug. --- diff --git a/tstools/Makefile b/tstools/Makefile index a067cb2..09118d6 100755 --- a/tstools/Makefile +++ b/tstools/Makefile @@ -8,7 +8,6 @@ DEST = $(PREFIX)/rec10/tstools all: cd epgdump;make all - cd tunerec;make clean: cd epgdump;make clean install: @@ -25,10 +24,8 @@ install: #cd caption2ass;cp ./Caption.dll $(DEST)/ #chmod +x $(DEST)/xvfb-run cd epgdump;make install - cd tunerec;install -m755 ./tunerec /usr/local/bin/ if [ -f ./neroAacEnc ]; then install -m755 ./neroAacEnc /usr/local/bin/ ;fi uninstall: rm -rf $(DEST) if [ -f /usr/local/bin/neroAacEnc ]; then rm /usr/local/bin/neroAacEnc ;fi - rm -rf /usr/local/bin/tunerec cd epgdump;make uninstall