From ed6e6e57a819c78b888b1b71056ccc4ebb40434f Mon Sep 17 00:00:00 2001 From: Matt Colyer Date: Wed, 30 Jul 2008 09:42:15 -0700 Subject: Added beginnings of a fuse fs, right now it's read only and terribly fragile. --- src/Makefile.am | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'src/Makefile.am') diff --git a/src/Makefile.am b/src/Makefile.am index cb05d95..ed1ae59 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -1,5 +1,6 @@ -AM_CFLAGS = `xml2-config --cflags` -AM_LDFLAGS = `xml2-config --libs` -lusb -lgnutls +AM_CFLAGS = `xml2-config --cflags` `pkg-config fuse --cflags` `pkg-config glib-2.0 --cflags` -g +AM_LDFLAGS = `xml2-config --libs` `pkg-config fuse --libs` `pkg-config glib-2.0 --libs` -lusb -lgnutls -bin_PROGRAMS = iphoneclient +bin_PROGRAMS = iphoneclient ifuse iphoneclient_SOURCES = usbmux.c main.c iphone.c plist.c lockdown.c AFC.c +ifuse_SOURCES = ifuse.c usbmux.c iphone.c plist.c lockdown.c AFC.c -- cgit v1.1-32-gdbae