зеркало из https://github.com/microsoft/SCXcore.git
19 строки
739 B
Makefile
19 строки
739 B
Makefile
# -*- mode: Makefile; -*-
|
|
#--------------------------------------------------------------------------------
|
|
# Copyright (c) Microsoft Corporation. All rights reserved.
|
|
#--------------------------------------------------------------------------------
|
|
# 2007-08-23
|
|
#
|
|
# Settings for all POSIX platforms. Each can be overridden in a platform-
|
|
# specific file (Makefile.pf.<platform>, leaving this file to contain defaults.
|
|
#
|
|
#--------------------------------------------------------------------------------
|
|
|
|
include $(SCX_BRD)/build/Makefile.gcc3
|
|
CXX_WARN_STRICT_FLAGS+=-Wextra
|
|
CXX_WARN_FLAGS+=-Wstrict-null-sentinel -Wmissing-include-dirs -Winit-self
|
|
|
|
ifeq ($(PF_DISTRO)$(PF_MAJOR),SUSE11)
|
|
CXX_WARN_FLAGS+=-Wno-ignored-qualifiers
|
|
endif
|