diff options
| author | 2020-06-08 18:54:10 +0200 | |
|---|---|---|
| committer | 2020-06-08 19:09:18 +0200 | |
| commit | f5c963b8c1b8a62c41c081767aec3ab4e1ae5690 (patch) | |
| tree | 963aa91195c24778624445764e3c6f2d36bc449f /common/Makefile.am | |
| parent | 960fb407eb362bb0e90326a30a984c1af1e5b0dd (diff) | |
| download | libimobiledevice-f5c963b8c1b8a62c41c081767aec3ab4e1ae5690.tar.gz libimobiledevice-f5c963b8c1b8a62c41c081767aec3ab4e1ae5690.tar.bz2 | |
Unfold automake variables into multiple lines for maintainability
Diffstat (limited to 'common/Makefile.am')
| -rw-r--r-- | common/Makefile.am | 29 |
1 files changed, 21 insertions, 8 deletions
diff --git a/common/Makefile.am b/common/Makefile.am index 054e2a1..4e3facb 100644 --- a/common/Makefile.am +++ b/common/Makefile.am | |||
| @@ -1,17 +1,30 @@ | |||
| 1 | AM_CPPFLAGS = -I$(top_srcdir)/include -I$(top_srcdir) | 1 | AM_CPPFLAGS = \ |
| 2 | -I$(top_srcdir)/include \ | ||
| 3 | -I$(top_srcdir) | ||
| 2 | 4 | ||
| 3 | AM_CFLAGS = $(GLOBAL_CFLAGS) $(libusbmuxd_CFLAGS) $(libplist_CFLAGS) $(libgnutls_CFLAGS) $(libtasn1_CFLAGS) $(openssl_CFLAGS) $(LFS_CFLAGS) | 5 | AM_CFLAGS = \ |
| 4 | AM_LDFLAGS = $(libusbmuxd_LIBS) $(libplist_LIBS) ${libpthread_LIBS} | 6 | $(GLOBAL_CFLAGS) \ |
| 7 | $(libusbmuxd_CFLAGS) \ | ||
| 8 | $(libplist_CFLAGS) \ | ||
| 9 | $(libgnutls_CFLAGS) \ | ||
| 10 | $(libtasn1_CFLAGS) \ | ||
| 11 | $(openssl_CFLAGS) \ | ||
| 12 | $(LFS_CFLAGS) | ||
| 13 | |||
| 14 | AM_LDFLAGS = \ | ||
| 15 | $(libusbmuxd_LIBS) \ | ||
| 16 | $(libplist_LIBS) \ | ||
| 17 | ${libpthread_LIBS} | ||
| 5 | 18 | ||
| 6 | noinst_LTLIBRARIES = libinternalcommon.la | 19 | noinst_LTLIBRARIES = libinternalcommon.la |
| 7 | libinternalcommon_la_LIBADD = | 20 | libinternalcommon_la_LIBADD = |
| 8 | libinternalcommon_la_LDFLAGS = $(AM_LDFLAGS) -no-undefined | 21 | libinternalcommon_la_LDFLAGS = $(AM_LDFLAGS) -no-undefined |
| 9 | libinternalcommon_la_SOURCES = \ | 22 | libinternalcommon_la_SOURCES = \ |
| 10 | socket.c socket.h \ | 23 | socket.c socket.h \ |
| 11 | thread.c thread.h \ | 24 | thread.c thread.h \ |
| 12 | debug.c debug.h \ | 25 | debug.c debug.h \ |
| 13 | userpref.c userpref.h \ | 26 | userpref.c userpref.h \ |
| 14 | utils.c utils.h | 27 | utils.c utils.h |
| 15 | 28 | ||
| 16 | if WIN32 | 29 | if WIN32 |
| 17 | libinternalcommon_la_LIBADD += -lole32 -lws2_32 | 30 | libinternalcommon_la_LIBADD += -lole32 -lws2_32 |
