Cleaning
This commit is contained in:
parent
0c89aa8bfc
commit
6e5fe34c2b
1 changed files with 9 additions and 10 deletions
19
Makefile
19
Makefile
|
@ -1,21 +1,20 @@
|
|||
# SPDX-License-Identifier: MIT
|
||||
|
||||
CC = gcc
|
||||
# CFLAGS = -Wall -Wextra -Werror -Wno-unused-parameter
|
||||
# CFLAGS += -Wno-unused-variable -Wno-unused-function
|
||||
# CFLAGS += -Wno-unused-but-set-variable -Wno-unused-value -Wno-unused-label
|
||||
# CFLAGS += -Wno-unused-result -Wno-unused-const-variable
|
||||
CFLAGS = -Wall -Wextra -Werror -Wno-unused-parameter
|
||||
CFLAGS += -Wno-unused-variable -Wno-unused-function
|
||||
CFLAGS += -Wno-unused-but-set-variable -Wno-unused-value -Wno-unused-label
|
||||
CFLAGS += -Wno-unused-result -Wno-unused-const-variable
|
||||
|
||||
# ifeq ($(RELEASE), 1)
|
||||
# CFLAGS += -fno-exceptions -fno-asynchronous-unwind-tables -fno-ident
|
||||
# CFLAGS += -fno-unwind-tables -fno-stack-protector -fno-plt -fno-pic
|
||||
# CFLAGS += -O3 -std=c99 -march=native -mtune=native -fomit-frame-pointer
|
||||
# endif
|
||||
ifeq ($(RELEASE), 1)
|
||||
CFLAGS += -fno-exceptions -fno-asynchronous-unwind-tables -fno-ident
|
||||
CFLAGS += -fno-unwind-tables -fno-stack-protector -fno-plt -fno-pic
|
||||
CFLAGS += -O3 -std=c99 -march=native -mtune=native -fomit-frame-pointer
|
||||
endif
|
||||
|
||||
# Include debug flags
|
||||
CFLAGS += -g -O0 -std=c99 -march=native -mtune=native
|
||||
|
||||
|
||||
C_SOURCES = $(wildcard *.c)
|
||||
C_HEADERS = $(wildcard *.h)
|
||||
OBJECTS = $(C_SOURCES:.c=.o)
|
||||
|
|
Loading…
Reference in a new issue