Explorar el Código

Make optimization flags configurable

master
Sijmen J. Mulder hace 6 años
padre
commit
f257cda04a
Se han modificado 1 ficheros con 3 adiciones y 1 borrados
  1. +3
    -1
      Makefile

+ 3
- 1
Makefile Ver fichero

@@ -6,8 +6,10 @@ STRIP ?= strip
PKG_CONFIG ?= pkg-config PKG_CONFIG ?= pkg-config
INSTALL ?= install INSTALL ?= install


CFLAGS ?= -O3
CFLAGS_OPTIMIZATION ?= -O3

CFLAGS += -Wall -Wextra -Wno-unused-parameter CFLAGS += -Wall -Wextra -Wno-unused-parameter
CFLAGS += $(CFLAGS_OPTIMIZATION)


ifeq ($(shell $(PKG_CONFIG) ncursesw && echo 1),1) ifeq ($(shell $(PKG_CONFIG) ncursesw && echo 1),1)
CFLAGS += $(shell $(PKG_CONFIG) --cflags ncursesw) CFLAGS += $(shell $(PKG_CONFIG) --cflags ncursesw)


Cargando…
Cancelar
Guardar