This repository was archived by the owner on Oct 15, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmakefile
66 lines (53 loc) · 2.86 KB
/
makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
#!/bin/bash
# ----------------------------------------------------------------------------------------------------------------------
# This file is part of {@link https://github.com/MovLib MovLib}.
#
# Copyright © 2013-present {@link https://movlib.org/ MovLib}.
#
# MovLib is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public
# License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later
# version.
#
# MovLib is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY# without even the implied warranty
# of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License along with MovLib.
# If not, see {@link http://www.gnu.org/licenses/ gnu.org/licenses}.
# ----------------------------------------------------------------------------------------------------------------------
# ----------------------------------------------------------------------------------------------------------------------
# Build environment.
#
# AUTHOR: Richard Fussenegger <[email protected]>
# COPYRIGHT: © 2014 MovLib
# LICENSE: http://www.gnu.org/licenses/agpl.html AGPL-3.0
# LINK: https://movlib.org/
# SINCE: 0.0.1-dev
# ----------------------------------------------------------------------------------------------------------------------
# Relative path to console commands.
CP:=src/MovLib/Console/Command
all: nginx-routes seed-aspect-ratios seed-countries seed-currencies seed-languages seed-subtitles translation entity-counts
entity-counts: $(CP)/Install/Count/AwardCount.php $(CP)/Install/Count/CompanyCount.php $(CP)/Install/Count/EpisodeCount.php $(CP)/Install/Count/GenreCount.php $(CP)/Install/Count/JobCount.php $(CP)/Install/Count/MovieCount.php $(CP)/Install/Count/PersonCount.php $(CP)/Install/Count/SeriesCount.php
movinstall entity-count-award -v --seed
movinstall entity-count-company -v --seed
movinstall entity-count-episode -v --seed
movinstall entity-count-genre -v --seed
movinstall entity-count-job -v --seed
movinstall entity-count-movie -v --seed
movinstall entity-count-person -v --seed
movinstall entity-count-series -v --seed
nginx-routes: $(CP)/Admin/NginxRoutes.php
movadmin nginx-routes -v
seed-aspect-ratios: $(CP)/Install/SeedAspectRatios.php
movinstall seed-aspect-ratios -v
seed-countries: $(CP)/Install/SeedCountries.php
movinstall seed-countries -v
seed-currencies: $(CP)/Install/SeedCurrencies.php
movinstall seed-currencies -v
seed-languages: $(CP)/Install/SeedLanguages.php
movinstall seed-languages -v
seed-subtitles: $(CP)/Install/SeedSubtitles.php
movinstall seed-subtitles -v
translation: $(CP)/Install/Translation.php
movinstall translation-compile -v
clean:
rm -rf var/intl/*