diff options
author | Jari Vetoniemi <mailroxas@gmail.com> | 2019-02-25 09:41:11 +0200 |
---|---|---|
committer | Jari Vetoniemi <mailroxas@gmail.com> | 2019-02-25 09:41:11 +0200 |
commit | 25fda753a9c1c5dc95eb5050e4d0dd083f78a923 (patch) | |
tree | 6af81d179d6d4f446b0f895b945ba9863b76f74d /GNUmakefile | |
parent | 6096ac3d1e0747276b1219dea13e38ee8f5c1837 (diff) |
make: try to silence deprecations always
Diffstat (limited to 'GNUmakefile')
-rw-r--r-- | GNUmakefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/GNUmakefile b/GNUmakefile index 4c683a6..6f6fa91 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -24,7 +24,8 @@ all: $(libs) $(libsymlinks) $(pkgconfigs) libasound.so.2.0.0: private override CPPFLAGS += -D_DEFAULT_SOURCE libasound.so.2.0.0: private override CPPFLAGS += -DBYTE_ORDER=__BYTE_ORDER -DLITTLE_ENDIAN=__LITTLE_ENDIAN -DBIG_ENDIAN=__BIG_ENDIAN -libasound.so.2.0.0: private override WARNINGS += -Wno-unused-parameter -Wno-deprecated-declarations +libasound.so.2.0.0: private override WARNINGS += -Wno-unused-parameter +libasound.so.2.0.0: private override CFLAGS += -Wno-deprecated-declarations libasound.so.2.0.0: private override LDFLAGS += -Wl,--version-script=libasound.map -Wl,-soname,libasound.so.2 libasound.so.2.0.0: private override LDLIBS += -lsndio libasound.so.2.0.0: src/libasound.c src/pcm.c src/mixer.c src/util/dsp.c src/util/dsp.h src/util/sysex.h src/util/defs.h src/util/util.h src/stubs.h src/symversioning-hell.h libasound.map |