/[ffmpeg-batch]/Makefile
ViewVC logotype

Annotation of /Makefile

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


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

1 yakumo_izuru 1.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 yakumo_izuru 1.2 @install -m0644 ffmpeg-batch.1 ${DESTDIR}${PREFIX}/man/man1/
11 yakumo_izuru 1.1 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