mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Math
synced 2024-11-14 19:26:08 +00:00
698f2c9fec
As texvccheck is a directory, make always considered the target texvccheck to be up-to-date, thus never invocating make in the subdirectory itself. This change marks texvccheck as a .PHONY target, causing make to compile texvccheck in the subdirectory. Change-Id: Ib758965c1eb53e1f7221e304fc808dc68136a219
12 lines
154 B
Makefile
12 lines
154 B
Makefile
DIRS = texvc texvccheck
|
|
|
|
.PHONY: all texvccheck
|
|
|
|
all: texvc texvccheck
|
|
|
|
texvc:
|
|
cd math; $(MAKE) $(MFLAGS)
|
|
|
|
texvccheck:
|
|
cd texvccheck; $(MAKE) $(MFLAGS)
|