make/gcc.mk

Thu, 12 Oct 2023 00:00:35 +0200

author
Mike Becker <universe@uap-core.de>
date
Thu, 12 Oct 2023 00:00:35 +0200
changeset 753
24dc84788dee
child 754
4bc7d966c9db
permissions
-rw-r--r--

replace most of the build system with uwproj

universe@753 1 #
universe@753 2 # gcc toolchain config
universe@753 3 #
universe@753 4
universe@753 5 CFLAGS =
universe@753 6 CXXFLAGS =
universe@753 7 DEBUG_CC_FLAGS = -g -Wall -Wextra -pedantic
universe@753 8 DEBUG_CXX_FLAGS = -g -Wall -Wextra -pedantic
universe@753 9 RELEASE_CC_FLAGS = -O3 -DNDEBUG
universe@753 10 RELEASE_CXX_FLAGS = -O3 -DNDEBUG
universe@753 11 LDFLAGS =
universe@753 12
universe@753 13 SHLIB_CFLAGS = -fPIC
universe@753 14 SHLIB_LDFLAGS = -shared

mercurial