Procházet zdrojové kódy

Allow -Werror to be temporarily disabled using "make NO_WERROR=1"

tags/v0.9.3
Michael Brown před 17 roky
rodič
revize
ed9ba18ec6
1 změnil soubory, kde provedl 5 přidání a 1 odebrání
  1. 5
    1
      src/Makefile

+ 5
- 1
src/Makefile Zobrazit soubor

@@ -101,12 +101,16 @@ DOXYGEN		?= doxygen
101 101
 #
102 102
 CFLAGS		+= -I include -I arch/$(ARCH)/include -I . -DARCH=$(ARCH)
103 103
 CFLAGS		+= -Os -ffreestanding
104
-CFLAGS		+= -Wall -W -Werror
104
+CFLAGS		+= -Wall -W
105 105
 CFLAGS		+= -g
106 106
 CFLAGS		+= $(EXTRA_CFLAGS)
107 107
 ASFLAGS		+= $(EXTRA_ASFLAGS)
108 108
 LDFLAGS		+= $(EXTRA_LDFLAGS)
109 109
 
110
+ifneq ($(NO_WERROR),1)
111
+CFLAGS		+= -Werror
112
+endif
113
+
110 114
 # CFLAGS for specific object types
111 115
 #
112 116
 CFLAGS_c	+= 

Načítá se…
Zrušit
Uložit