Mercurial > urweb
annotate src/coq/Makefile @ 2062:795b5b75453c
Add 'role' data attribute.
Note, that 'role' attribute is a part of reach ARIA API described here:
http://www.w3.org/TR/wai-aria/
Among 'role', it defines lots of aria-* attributes
author | Sergey Mironov <grrwlf@gmail.com> |
---|---|
date | Mon, 07 Jul 2014 10:05:04 +0400 |
parents | 705cb41ac7d0 |
children |
rev | line source |
---|---|
adam@1618 | 1 MODULES := Axioms Name Syntax Semantics |
adam@1618 | 2 VS := $(MODULES:%=%.v) |
adam@1618 | 3 |
adam@1618 | 4 .PHONY: coq clean |
adam@1618 | 5 |
adam@1618 | 6 coq: Makefile.coq |
adam@1618 | 7 make -f Makefile.coq |
adam@1618 | 8 |
adam@1618 | 9 Makefile.coq: Makefile $(VS) |
adam@1618 | 10 coq_makefile -impredicative-set $(VS) -o Makefile.coq |
adam@1618 | 11 |
adam@1618 | 12 clean:: Makefile.coq |
adam@1618 | 13 make -f Makefile.coq clean |
adam@1618 | 14 rm -f Makefile.coq |