diff options
| author | Matthieu Sozeau | 2015-04-03 08:45:26 +0200 |
|---|---|---|
| committer | Matthieu Sozeau | 2015-04-03 08:45:26 +0200 |
| commit | 244e554f9dc919ea9aa02aeed51464aaf1b60125 (patch) | |
| tree | c9edf5302796f68942ae877efb0511592af606d2 | |
| parent | 22d788f795a60367af19716d190841a2f7f31176 (diff) | |
Fix Makefiles.
| -rw-r--r-- | mathcomp/Makefile | 2 | ||||
| -rw-r--r-- | mathcomp/ssreflect/Makefile | 6 |
2 files changed, 3 insertions, 5 deletions
diff --git a/mathcomp/Makefile b/mathcomp/Makefile index dcd5f4e..fcd8dfe 100644 --- a/mathcomp/Makefile +++ b/mathcomp/Makefile @@ -6,7 +6,7 @@ export COQPATH=$(PWD)/.. all: ssreflect algebra fingroup odd_order solvable field character discrete real_closed ssrtest $(MAKE) -C $@ -ssrefect: +ssreflect: $(MAKE) -C $@ algebra: fingroup diff --git a/mathcomp/ssreflect/Makefile b/mathcomp/ssreflect/Makefile index fd8209d..76e2984 100644 --- a/mathcomp/ssreflect/Makefile +++ b/mathcomp/ssreflect/Makefile @@ -4,11 +4,9 @@ ifeq "$(COQBIN)" "" COQBIN=$(dir $(shell which coqtop))/ endif -BRANCH_coq = $(shell $(COQBIN)/coqtop -v | head -1 | \ - sed 's/.*version \([0-9]\.[0-9]\)[^ ]* .*/v\1/') +BRANCH_coq = $(shell $(COQBIN)/coqtop -v | head -1 | sed 's/.*version \([0-9]\.[0-9]\)[^ ]* .*/v\1/') -HASH_coq = $(shell echo Quit. | $(COQBIN)/coqtop 2>&1 | \ - head -1 | sed 's/^.*(\([a-f0-9]*\).*/\1/') +HASH_coq = $(shell echo Quit. | $(COQBIN)/coqtop 2>&1 | head -1 | sed 's/^.*(\([a-f0-9]*\)).*/\1/' ) HASH_coq_v85beta1 = eaa3d0b15adf4eb11ffb00ab087746a5b15c4d5d |
