diff options
| author | 2012-07-17 00:22:29 +0200 | |
|---|---|---|
| committer | 2012-07-17 00:22:29 +0200 | |
| commit | 954c5504a03a061ff43ec6c5334f342bd919badd (patch) | |
| tree | 6f8cbdc8c846d62128bc33e851e370a3b65de0e7 /src | |
| parent | 0e4fb99549e0a1b4f5330598ec30a222e0fb75cc (diff) | |
| download | libirecovery-954c5504a03a061ff43ec6c5334f342bd919badd.tar.gz libirecovery-954c5504a03a061ff43ec6c5334f342bd919badd.tar.bz2 | |
changed build system to autofoo. previous Makefile is now Makefile.shared
Diffstat (limited to 'src')
| -rw-r--r-- | src/Makefile.am | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/Makefile.am b/src/Makefile.am new file mode 100644 index 0000000..a7027ee --- /dev/null +++ b/src/Makefile.am | |||
| @@ -0,0 +1,17 @@ | |||
| 1 | AM_CPPFLAGS = -I$(top_srcdir)/include | ||
| 2 | |||
| 3 | AM_CFLAGS = $(LIBIRECOVERY_CFLAGS) | ||
| 4 | AM_LDFLAGS = $(LIBIRECOVERY_LDFLAGS) | ||
| 5 | AM_LIBS = $(LIBIRECOVERY_LIBS) | ||
| 6 | |||
| 7 | lib_LTLIBRARIES = libirecovery.la | ||
| 8 | libirecovery_la_LDFLAGS = $(AM_LDFLAGS) -version-info $(LIBIRECOVERY_SO_VERSION) -no-undefined $(AM_LIBS) | ||
| 9 | libirecovery_la_SOURCES = \ | ||
| 10 | libirecovery.c | ||
| 11 | |||
| 12 | bin_PROGRAMS = irecovery | ||
| 13 | |||
| 14 | irecovery_SOURCES = irecovery.c | ||
| 15 | irecovery_CFLAGS = $(AM_CFLAGS) | ||
| 16 | irecovery_LDFLAGS = $(AM_LDFLAGS) $(IRECOVERY_LIBS) | ||
| 17 | irecovery_LDADD = ./libirecovery.la | ||
