Math/Makefile
Tim Landscheidt 698f2c9fec Fix "make texvccheck" in top-level Makefile
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
2016-12-25 12:45:09 +00:00

12 lines
154 B
Makefile

DIRS = texvc texvccheck
.PHONY: all texvccheck
all: texvc texvccheck
texvc:
cd math; $(MAKE) $(MFLAGS)
texvccheck:
cd texvccheck; $(MAKE) $(MFLAGS)