diff options
author | Martin Szulecki | 2010-01-05 04:52:50 +0100 |
---|---|---|
committer | Martin Szulecki | 2010-01-05 04:52:50 +0100 |
commit | e0cf27624accbcd49ff628919a2546685e3136d9 (patch) | |
tree | 0009f001df8e971813e363a2d8036caad261d3f0 /src/Makefile.am | |
download | ideviceinstaller-e0cf27624accbcd49ff628919a2546685e3136d9.tar.gz ideviceinstaller-e0cf27624accbcd49ff628919a2546685e3136d9.tar.bz2 |
Commit initial sources
Diffstat (limited to 'src/Makefile.am')
-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..028e2e1 --- /dev/null +++ b/src/Makefile.am @@ -0,0 +1,17 @@ +AM_CFLAGS = \ + $(GLOBAL_CFLAGS) \ + $(libiphone_CFLAGS) \ + $(libplist_CFLAGS) \ + $(libzip_CFLAGS) + +AM_LDFLAGS = \ + $(libiphone_LIBS) \ + $(libplist_LIBS) \ + $(libzip_LIBS) + +bin_PROGRAMS = iphoneinstaller + +iphoneinstaller_SOURCES = iphoneinstaller.c +iphoneinstaller_CFLAGS = $(AM_CFLAGS) +iphoneinstaller_LDFLAGS = $(AM_LDFLAGS) + |