1Description: 2Control of symbols exported by shared libraries. 3 4Notice: 5The value of $(CFLAG_VISIBILITY) needs to be added to the CFLAGS for the 6compilation of all sources that make up the library. 7 8Files: 9m4/visibility.m4 10 11Depends-on: 12 13configure.ac: 14gl_VISIBILITY 15 16Makefile.am: 17# The value of $(CFLAG_VISIBILITY) needs to be added to the CFLAGS for the 18# compilation of all sources that make up the library. This line here does it 19# only for the gnulib part of it. The developer is responsible for adding 20# $(CFLAG_VISIBILITY) to the Makefile.ams of the other portions of the library. 21AM_CFLAGS += $(CFLAG_VISIBILITY) 22 23Include: 24 25License: 26unlimited 27 28Maintainer: 29Bruno Haible 30 31