https://github.com/coq-ext-lib/coq-ext-lib
Raw File
Tip revision: 80e3141f4d7b73a797690b84aa7d164cc69e441c authored by gregory malecha on 10 January 2013, 19:47:59 UTC
adding notation for rel_dec.
Tip revision: 80e3141
Makefile
PROJECT_NAM=coq-ext-lib

all: theories examples

theories:
	$(MAKE) -C theories

examples: 
	$(MAKE) -C examples

clean:
	$(MAKE) -C theories clean
	$(MAKE) -C examples clean

dist:
	@ git archive HEAD -o $(PROJECT_NAME).tgz

.dir-locals.el: tools/dir-locals.el
	@ sed s,PWD,$(shell pwd -P),g tools/dir-locals.el > .dir-locals.el

.PHONY: all clean dist theories examples
back to top