OSDN Git Service

add neroaac setting.
[rec10/rec10-git.git] / tstools / Makefile
1 PREFIX = /usr/local/share
2 MAJOR = 0
3 MINOR = 9
4 REVISION = 0
5 VER = $(MAJOR).$(MINOR).$(REVISION)
6
7 DEST = $(PREFIX)/rec10/tstools
8
9 all: 
10         cd epgdump;make all
11 clean:
12         cd epgdump;make clean
13 install: 
14         if ! [ -d $(DEST) ]; then mkdir -p $(DEST) ;fi
15         mkdir -p $(DEST)
16         cd BonTsDemux;cp ./*.* $(DEST)/
17         cd jTsSplitter;cp ./*.* $(DEST)/
18         cd cfr2tc;cp ./cfr2tc.exe $(DEST)/
19         cd DtsEdit;cp ./DtsEdit.exe $(DEST)/
20         cd xvfb-run;cp ./xvfb-run $(DEST)/
21         cd caption2ass;cp ./Caption2Ass.exe $(DEST)/
22         cd caption2ass;cp ./Caption.dll $(DEST)/
23         chmod +x $(DEST)/xvfb-run
24         cd epgdump;make install
25         if ! [ -f ./neroAacEnc ]; then install -m755 /usr/local/bin ;fi
26 uninstall:
27         rm -rf $(DEST)
28         if ! [ -f /usr/local/bin/neroAacEnc ]; then rm /usr/local/bin/neroAacEnc ;fi
29         cd epgdump;make uninstall