diff options
author | Attila Molnar <attilamolnar@hush.com> | 2013-07-04 10:17:48 -0700 |
---|---|---|
committer | Attila Molnar <attilamolnar@hush.com> | 2013-07-04 10:17:48 -0700 |
commit | 27ae66eb3fb7056570936e7f4655ec3128bac2a7 (patch) | |
tree | 87621d8cecc160fa7b2089f7b32a6c6b61cea324 /configure | |
parent | fd0fa86da89ab4cefa778307088ef2552a05a170 (diff) | |
parent | 240f34086a805dc4c3151aae00101f9bec6870df (diff) |
Merge pull request #577 from SaberUK/master+makefile-cleanup
Tidy up the Makefile template.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -960,6 +960,7 @@ EOF s/\@IFDEF (\S+)/ifdef $1/g; s/\@IFNDEF (\S+)/ifndef $1/g; s/\@IFEQ (\S+) (\S+)/ifeq ($1,$2)/g; + s/\@IFNEQ (\S+) (\S+)/ifneq ($1,$2)/g; s/\@ELSIFEQ (\S+) (\S+)/else ifeq ($1,$2)/g; s/\@ELSE/else/g; s/\@ENDIF/endif/g; @@ -975,6 +976,7 @@ EOF s/\@IFDEF (\S+)/.if defined($1)/g; s/\@IFNDEF (\S+)/.if !defined($1)/g; s/\@IFEQ (\S+) (\S+)/.if $1 == $2/g; + s/\@IFNEQ (\S+) (\S+)/.if $1 != $2/g; s/\@ELSIFEQ (\S+) (\S+)/.elif $1 == $2/g; s/\@ELSE/.else/g; s/\@ENDIF/.endif/g; |