]> ruderich.org/simon Gitweb - socket2unix/socket2unix.git/blob - src/Makefile.am
Log functions always write a trailing newline.
[socket2unix/socket2unix.git] / src / Makefile.am
1 lib_LTLIBRARIES           = libsocket2unix.la
2 libsocket2unix_la_SOURCES = socket2unix.c
3
4 # Make sure the library is not writable. See README why this is important. Is
5 # not run with `make libsocket2unix.la`, but this isn't common usage.
6 all-local: $(lib_LTLIBRARIES)
7         find .libs -type f -exec chmod ugo-w '{}' \;
8 # `install` uses normal permissions, "fix" them so `make install` also
9 # installs non-writable files.
10 install-exec-hook:
11         find $(DESTDIR)$(libdir) -type f -exec chmod ugo-w '{}' \;