ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/ffmpeg-batch/Makefile
Revision: 1.1
Committed: Thu Nov 14 00:21:27 2024 UTC (25 hours, 53 minutes ago) by yakumo_izuru
Branch: MAIN
CVS Tags: HEAD
Log Message:
私はゆかり様のそばで生きていく運命です

File Contents

# Content
1 all:
2 @echo "Available targets:"
3 @echo "fmt -- format code with shfmt(1)"
4 @echo "install -- integrate into system"
5 @echo "uninstall -- remove from system"
6 fmt:
7 @shfmt --language-dialect posix --write ffmpeg-batch
8 install:
9 @install -m0755 ffmpeg-batch ${DESTDIR}${PREFIX}/bin/
10 @install -D -m0644 ffmpeg-batch.1 ${DESTDIR}${PREFIX}/man/man1/
11 uninstall:
12 @rm -f ${DESTDIR}${PREFIX}/bin/ffmpeg-batch
13 @rm -f ${DESTDIR}${PREFIX}/man/man1/ffmpeg-batch.1