diff options
author | Eike Rathke <erack@apache.org> | 2011-08-28 14:46:31 +0000 |
---|---|---|
committer | Eike Rathke <erack@apache.org> | 2011-08-28 14:46:31 +0000 |
commit | cc756d24d3f34c4ac402ee88ed3e25e3934ec8bc (patch) | |
tree | b5ca7212727b21e999c0a54352b69487da3d2702 /hyphen/makefile.mk | |
parent | 1a5baf5ce78676385d35209eb311ed2a35cdf063 (diff) |
make copylefts an option
Based on original work by Mathias Bauer <mbauer@apache.org>
Diffstat (limited to 'hyphen/makefile.mk')
-rw-r--r-- | hyphen/makefile.mk | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/hyphen/makefile.mk b/hyphen/makefile.mk index 94c1592df21e..ae363b288c23 100644 --- a/hyphen/makefile.mk +++ b/hyphen/makefile.mk @@ -36,6 +36,8 @@ TARGET=hyphen # --- Files -------------------------------------------------------- +.IF "$(DISABLE_HYPHEN)" == "" + TARFILE_NAME=hyphen-2.7.1 TARFILE_MD5=48a9f787f43a09c0a9b7b00cd1fddbbf @@ -107,3 +109,8 @@ OUT2INC += hyphen.h .INCLUDE : target.mk .INCLUDE : tg_ext.mk +.ELSE +all: + @echo "hyphen disabled" + +.ENDIF |