diff options
| author | J08nY | 2018-03-20 15:10:41 +0100 |
|---|---|---|
| committer | J08nY | 2018-03-20 15:10:41 +0100 |
| commit | 6f3809790583a1256b53a419f3fee400e11e155a (patch) | |
| tree | 496b89e9833a27a25af36001293375b7e2a0619a /src/Makefile | |
| parent | 49406044628b61f12493775e5797ac3ef441e19c (diff) | |
| download | ecgen-6f3809790583a1256b53a419f3fee400e11e155a.tar.gz ecgen-6f3809790583a1256b53a419f3fee400e11e155a.tar.zst ecgen-6f3809790583a1256b53a419f3fee400e11e155a.zip | |
Run clang-format.
Diffstat (limited to 'src/Makefile')
| -rw-r--r-- | src/Makefile | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/Makefile b/src/Makefile index 6451d3a..a3f28c4 100644 --- a/src/Makefile +++ b/src/Makefile @@ -12,17 +12,17 @@ DEBUG ?= 0 TEST ?= 0 FAST ?= 0 ifeq ($(DEBUG), 1) - CFLAGS += -DDEBUG -g -Og -Werror -pedantic + CFLAGS += -DDEBUG -g -Og -Werror -pedantic else ifeq ($(TEST), 1) CFLAGS += -DNDEBUG --coverage -g -O0 else ifeq ($(FAST), 1) - ifeq ($(CC), gcc) - CFLAGS += -DNDEBUG -O3 -march=native -pipe - else - CFLAGS += -DNDEBUG -O3 - endif + ifeq ($(CC), gcc) + CFLAGS += -DNDEBUG -O3 -march=native -pipe + else + CFLAGS += -DNDEBUG -O3 + endif else - CFLAGS += -DNDEBUG -O2 + CFLAGS += -DNDEBUG -O2 endif LDFLAGS = -L../lib/parson -L../lib/sha1 -L../lib/pari |
