File tree Expand file tree Collapse file tree 2 files changed +11
-10
lines changed Expand file tree Collapse file tree 2 files changed +11
-10
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,8 @@ export TOPDIR = $(shell pwd)
6
6
7
7
REC_TARGETS =build domserver install-domserver judgehost install-judgehost \
8
8
docs install-docs inplace-install inplace-uninstall maintainer-conf \
9
- composer-dependencies composer-dependencies-dev
9
+ composer-dependencies composer-dependencies-dev \
10
+ composer-dump-autoload composer-dump-autoload-dev
10
11
11
12
# Global Makefile definitions
12
13
include $(TOPDIR ) /Makefile.global
@@ -65,15 +66,6 @@ ifneq "$(JUDGEHOST_BUILD_ENABLED)" "yes"
65
66
@exit 1
66
67
endif
67
68
68
- # Dump autoload dependencies (including plugins)
69
- # This is needed since symfony/runtime is a Composer plugin that runs while dumping
70
- # the autoload file
71
- composer-dump-autoload :
72
- composer $(subst 1,-q,$(QUIET ) ) dump-autoload -o -a
73
-
74
- composer-dump-autoload-dev :
75
- composer $(subst 1,-q,$(QUIET ) ) dump-autoload
76
-
77
69
# Generate documentation for distribution. Remove this dependency from
78
70
# dist above for quicker building from git sources.
79
71
distdocs :
Original file line number Diff line number Diff line change @@ -18,6 +18,15 @@ maintainer-conf: .env.local
18
18
@echo " # the DOMjudge Symfony application in developer mode. Adjust as needed." >> $@
19
19
@echo " APP_ENV=dev" >> $@
20
20
21
+ # Dump autoload dependencies (including plugins)
22
+ # This is needed since symfony/runtime is a Composer plugin that runs while dumping
23
+ # the autoload file
24
+ composer-dump-autoload :
25
+ composer $(subst 1,-q,$(QUIET ) ) dump-autoload -o -a
26
+
27
+ composer-dump-autoload-dev :
28
+ composer $(subst 1,-q,$(QUIET ) ) dump-autoload
29
+
21
30
copy-bundle-assets :
22
31
# We can not use bin/console here, as when using a fakeroot,
23
32
# the include paths are broken. We just copy in the data we need
You can’t perform that action at this time.
0 commit comments