/[ffmpeg-batch]/Makefile
ViewVC logotype

Contents of /Makefile

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.2 - (show annotations)
Fri Nov 15 10:49:31 2024 UTC (2 hours, 5 minutes ago) by yakumo_izuru
Branch: MAIN
CVS Tags: HEAD
Changes since 1.1: +1 -1 lines
4 つの引数を取ります (最初はソースです)

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 -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

nishi@chaotic.ninja
ViewVC Help
Powered by ViewVC 1.3.0-dev