blob: 4d901812f66de58b426be6405e297df0434129f3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
AM_CFLAGS = \
$(GLOBAL_CFLAGS) \
$(libimobiledevice_CFLAGS) \
$(libplist_CFLAGS) \
$(libzip_CFLAGS)
AM_LDFLAGS = \
$(libimobiledevice_LIBS) \
$(libplist_LIBS) \
$(libzip_LIBS)
bin_PROGRAMS = ideviceinstaller
ideviceinstaller_SOURCES = ideviceinstaller.c
ideviceinstaller_CFLAGS = $(AM_CFLAGS)
ideviceinstaller_LDFLAGS = $(AM_LDFLAGS)
|