From 695db0ba4a767d5bb0ceb3cb802dbcacba482b0e Mon Sep 17 00:00:00 2001 From: Adam Megacz Date: Wed, 16 Mar 2011 01:55:22 -0700 Subject: [PATCH] Makefile fixes: ignore emacs droppings --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 1f18b0d..06d0382 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ coqc := coqc -noglob -coqfiles := $(shell find src -name \*.v) -allfiles := $(coqfiles) $(shell find src -name \*.hs) +coqfiles := $(shell find src -name \*.v | grep -v \\\#) +allfiles := $(coqfiles) $(shell find src -name \*.hs | grep -v \\\#) default: build/CoqPass.hs -- 1.7.10.4