diff options
| author | 2013-03-20 05:34:51 +0100 | |
|---|---|---|
| committer | 2013-03-20 05:34:51 +0100 | |
| commit | efca491e4c19868a68a099638552f9ba431dca4b (patch) | |
| tree | 4ed04996837945ca172da485b5aa507ca9b988c2 /common/Makefile.am | |
| parent | a49c508bc489199f1f352be1f5aaaafb07c10506 (diff) | |
| download | libimobiledevice-efca491e4c19868a68a099638552f9ba431dca4b.tar.gz libimobiledevice-efca491e4c19868a68a099638552f9ba431dca4b.tar.bz2 | |
move thread and socket code to "common" subdir
Diffstat (limited to 'common/Makefile.am')
| -rw-r--r-- | common/Makefile.am | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/common/Makefile.am b/common/Makefile.am new file mode 100644 index 0000000..dfa6852 --- /dev/null +++ b/common/Makefile.am | |||
| @@ -0,0 +1,15 @@ | |||
| 1 | AM_CPPFLAGS = -I$(top_srcdir)/include | ||
| 2 | |||
| 3 | AM_CFLAGS = $(GLOBAL_CFLAGS) $(libplist_CFLAGS) $(LFS_CFLAGS) | ||
| 4 | AM_LDFLAGS = $(libplist_LIBS) ${libpthread_LIBS} | ||
| 5 | |||
| 6 | noinst_LTLIBRARIES = libinternalcommon.la | ||
| 7 | libinternalcommon_la_LIBADD = | ||
| 8 | libinternalcommon_la_LDFLAGS = $(AM_LDFLAGS) -no-undefined | ||
| 9 | libinternalcommon_la_SOURCES = \ | ||
| 10 | socket.c socket.h \ | ||
| 11 | thread.c thread.h | ||
| 12 | |||
| 13 | if WIN32 | ||
| 14 | libinternalcommon_la_LIBADD += -lole32 | ||
| 15 | endif | ||
