diff options
Diffstat (limited to 'ci/compile-tests/Makefile')
| -rw-r--r-- | ci/compile-tests/Makefile | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/ci/compile-tests/Makefile b/ci/compile-tests/Makefile new file mode 100644 index 00000000..32f6561b --- /dev/null +++ b/ci/compile-tests/Makefile @@ -0,0 +1,23 @@ +# This file is part of Proof General. +# +# © Copyright 2020 Hendrik Tews +# +# Authors: Hendrik Tews +# Maintainer: Hendrik Tews <hendrik@askra.de> +# +# License: GPL (GNU GENERAL PUBLIC LICENSE) + + +TOPTARGETS := test clean + +SUBDIRS := $(wildcard [0-9][0-9][0-9]-*) + +$(TOPTARGETS): $(SUBDIRS) +$(SUBDIRS): + $(MAKE) -C $@ $(MAKECMDGOALS) + +.PHONY: $(TOPTARGETS) $(SUBDIRS) + +.PHONY: TAGS +TAGS: + etags *.el */*.el |
