572ced7c3f
git-svn-id: https://svn.disconnected-by-peer.at/svn/linamh/trunk/ifolder@1632 6952d904-891a-0410-993b-d76249ca496b
57 lines
2.0 KiB
Diff
57 lines
2.0 KiB
Diff
diff -uNr ifolder.orig/src/libifolder/Makefile.am ifolder/src/libifolder/Makefile.am
|
|
--- ifolder.orig/src/libifolder/Makefile.am 2009-02-21 17:10:23.648059042 +0100
|
|
+++ ifolder/src/libifolder/Makefile.am 2009-02-21 17:11:44.226735427 +0100
|
|
@@ -15,7 +15,7 @@
|
|
override CFLAGS =
|
|
|
|
libifolderclient_la_SOURCES = \
|
|
- iFolderClientLib.c stdsoap2.h ifolder.c ifolder.h
|
|
+ iFolderClientLib.c ifolder.c ifolder.h
|
|
|
|
libifolderclient_la_CFLAGS = \
|
|
$(SIMIAS_CLIENT_C_CFLAGS) \
|
|
@@ -28,18 +28,15 @@
|
|
# > $(srcdir)/env.h
|
|
# $(GSOAP_PATH)/soapcpp2 -c -penv $(srcdir)/env.h
|
|
|
|
-$(srcdir)/stdsoap2.h:
|
|
- cp $(GSOAP_PATH)/stdsoap2.h $(srcdir)
|
|
-
|
|
#$(srcdir)/iFolderClient.h: $(srcdir)/stdsoap2.c $(IFOLDER_CLIENT_WSDL)
|
|
|
|
-$(srcdir)/iFolderClient.h: $(srcdir)/stdsoap2.h $(IFOLDER_CLIENT_WSDL)
|
|
- $(GSOAP_PATH)/wsdl2h -c -o $@ $(IFOLDER_CLIENT_WSDL)
|
|
+$(srcdir)/iFolderClient.h: $(IFOLDER_CLIENT_WSDL)
|
|
+ wsdl2h -c -o $@ $(IFOLDER_CLIENT_WSDL)
|
|
|
|
$(srcdir)/iFolderClientLib.c: $(srcdir)/iFolderClient.h
|
|
> $(srcdir)/env.h
|
|
- $(GSOAP_PATH)/soapcpp2 -c -penv $(srcdir)/env.h
|
|
- $(GSOAP_PATH)/soapcpp2 -c -n -piFolder $(srcdir)/iFolderClient.h
|
|
+ soapcpp2 -c -penv $(srcdir)/env.h
|
|
+ soapcpp2 -c -n -piFolder $(srcdir)/iFolderClient.h
|
|
|
|
install-exec-hook:
|
|
if !WINDOWS
|
|
@@ -51,19 +48,17 @@
|
|
$(mkinstalldirs) $(DESTDIR)$(includedir)/ifolder3
|
|
$(INSTALL_PROGRAM) iFolderStub.h $(DESTDIR)$(includedir)/ifolder3
|
|
$(INSTALL_PROGRAM) iFolder.nsmap $(DESTDIR)$(includedir)/ifolder3
|
|
- $(INSTALL_PROGRAM) stdsoap2.h $(DESTDIR)$(includedir)/ifolder3
|
|
$(INSTALL_PROGRAM) iFolderH.h $(DESTDIR)$(includedir)/ifolder3
|
|
$(INSTALL_PROGRAM) ifolder.h $(DESTDIR)$(includedir)/ifolder3
|
|
|
|
uninstall-local:
|
|
rm -f $(DESTDIR)$(includedir)/ifolder3/iFolderStub.h
|
|
rm -f $(DESTDIR)$(includedir)/ifolder3/iFolder.nsmap
|
|
- rm -f $(DESTDIR)$(includedir)/ifolder3/stdsoap2.h
|
|
rm -f $(DESTDIR)$(includedir)/ifolder3/iFolderH.h
|
|
rm -f $(DESTDIR)$(includedir)/ifolder3/ifolder.h
|
|
|
|
clean-local:
|
|
- rm -f stdsoap2.* *.xml iFolder* env* soap*
|
|
+ rm -f *.xml iFolder* env* soap*
|
|
rm -rf $(COMMON_CLEAN_FILES)
|
|
|
|
distclean-local:
|