diff options
author | Joey Hess <joey@kitenet.net> | 2010-12-12 13:16:34 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2010-12-12 13:16:34 -0400 |
commit | b805b9ae66d279c4fee20c433e6c218f29103978 (patch) | |
tree | 0494173a7ab94ea830dbefb344de704dc0bab5bf | |
parent | 98ad5402d9b095b07df82f088cf0a19c8298ca0c (diff) |
Makefile: Add GHCOPTS variable.
-rw-r--r-- | Makefile | 3 | ||||
-rw-r--r-- | debian/changelog | 1 |
2 files changed, 3 insertions, 1 deletions
@@ -1,5 +1,6 @@ PREFIX=/usr -GHCMAKE=ghc -Wall -odir build -hidir build -O2 --make +GHCOPTS=-O2 -Wall +GHCMAKE=ghc -odir build -hidir build $(GHCOPTS) --make all: git-annex git-annex.1 docs diff --git a/debian/changelog b/debian/changelog index 7e08b0731..5d088f1bd 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,6 +1,7 @@ git-annex (0.13) UNRELEASED; urgency=low * Makefile: Install man page and html (when built). + * Makefile: Add GHCOPTS variable. -- Joey Hess <joeyh@debian.org> Sun, 12 Dec 2010 13:14:58 -0400 |