diff options
author | Daniel Friesel <derf@finalrewind.org> | 2016-03-11 21:29:09 +0100 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2016-03-11 21:29:09 +0100 |
commit | 7e81c50bae4e74ce81e896511e485c8ca3c13f23 (patch) | |
tree | 706366fc5ef4f4eef83d835fc4b70418739a1d8a /Makefile | |
parent | 8625fa013eb7b835215d7089ae8f182e47b04136 (diff) |
Add german info/error strings (Use "LANG=DE make")
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -14,6 +14,10 @@ SHARED_FLAGS = ${MCU_FLAGS} -I. -Os -Wall -Wextra -pedantic SHARED_FLAGS += -funsigned-char -funsigned-bitfields -fpack-struct -fshort-enums SHARED_FLAGS += -flto -mstrict-X +ifeq (${LANG},DE) + SHARED_FLAGS += -DLANG_DE +endif + CFLAGS += ${SHARED_FLAGS} -std=c11 CXXFLAGS += ${SHARED_FLAGS} -std=c++11 -fno-rtti -fno-exceptions |