847b93e3ea
git-svn-id: https://svn.disconnected-by-peer.at/svn/linamh/trunk/ifolder@1133 6952d904-891a-0410-993b-d76249ca496b
69 lines
2.4 KiB
Diff
69 lines
2.4 KiB
Diff
diff -uNr simias.orig/src/core/libsimias/Makefile.am simias/src/core/libsimias/Makefile.am
|
|
--- simias.orig/src/core/libsimias/Makefile.am 2009-04-19 18:28:33.292587761 +0200
|
|
+++ simias/src/core/libsimias/Makefile.am 2009-04-19 18:31:32.025741548 +0200
|
|
@@ -6,7 +6,6 @@
|
|
dist-hook:
|
|
rm -rf `find $(distdir) |grep simiasClientLib.c`
|
|
rm -rf `find $(distdir) |grep envC.c`
|
|
- rm -rf `find $(distdir) |grep stdsoap2.c`
|
|
|
|
|
|
lib_LTLIBRARIES = libsimias.la
|
|
@@ -14,7 +13,7 @@
|
|
override CFLAGS =
|
|
|
|
libsimias_la_SOURCES = \
|
|
- envC.c simiasClientLib.c stdsoap2.c simias.c simias.h simiasweb.c simiasweb.h
|
|
+ envC.c simiasClientLib.c simias.c simias.h simiasweb.c simiasweb.h
|
|
|
|
libsimias_la_CFLAGS = \
|
|
$(XML2_CFLAGS) -DWITH_NONAMESPACES -DWITH_COOKIES
|
|
@@ -22,19 +21,15 @@
|
|
libsimias_la_LDFLAGS = \
|
|
$(XML2_LIBS)
|
|
|
|
-envC.c: $(srcdir)/stdsoap2.c
|
|
+envC.c:
|
|
> $(srcdir)/env.h
|
|
- $(GSOAP_PATH)/soapcpp2 -c -penv $(srcdir)/env.h
|
|
+ soapcpp2 -c -penv $(srcdir)/env.h
|
|
|
|
-$(srcdir)/stdsoap2.c:
|
|
- cp $(GSOAP_PATH)/stdsoap2.h $(srcdir)
|
|
- cp $(GSOAP_PATH)/stdsoap2.c $(srcdir)
|
|
-
|
|
-$(srcdir)/libsimias.h: $(srcdir)/stdsoap2.c $(SIMIAS_WSDL)
|
|
- $(GSOAP_PATH)/wsdl2h -c -o $@ $(SIMIAS_WSDL)
|
|
+$(srcdir)/libsimias.h: $(SIMIAS_WSDL)
|
|
+ wsdl2h -c -o $@ $(SIMIAS_WSDL)
|
|
|
|
$(srcdir)/simiasClientLib.c: $(srcdir)/libsimias.h
|
|
- $(GSOAP_PATH)/soapcpp2 -c -n -psimias $(srcdir)/libsimias.h
|
|
+ soapcpp2 -c -n -psimias $(srcdir)/libsimias.h
|
|
|
|
install-exec-hook:
|
|
if !WINDOWS
|
|
@@ -46,7 +41,6 @@
|
|
$(mkinstalldirs) $(DESTDIR)$(includedir)
|
|
$(INSTALL_PROGRAM) simiasStub.h $(DESTDIR)$(includedir)/simias
|
|
$(INSTALL_PROGRAM) simias.nsmap $(DESTDIR)$(includedir)/simias
|
|
- $(INSTALL_PROGRAM) stdsoap2.h $(DESTDIR)$(includedir)/simias
|
|
$(INSTALL_PROGRAM) simiasH.h $(DESTDIR)$(includedir)/simias
|
|
$(INSTALL_PROGRAM) simias.h $(DESTDIR)$(includedir)/simias
|
|
$(INSTALL_PROGRAM) simiasweb.h $(DESTDIR)$(includedir)/simias
|
|
@@ -54,13 +48,12 @@
|
|
uninstall-local:
|
|
rm -f $(DESTDIR)$(includedir)/simias/simiasStub.h
|
|
rm -f $(DESTDIR)$(includedir)/simias/simias.nsmap
|
|
- rm -f $(DESTDIR)$(includedir)/simias/stdsoap2.h
|
|
rm -f $(DESTDIR)$(includedir)/simias/simiasH.h
|
|
rm -f $(DESTDIR)$(includedir)/simias/simias.h
|
|
rm -f $(DESTDIR)$(includedir)/simias/simiasweb.h
|
|
|
|
clean-local:
|
|
- rm -f stdsoap2.* *.xml simias.nsmap simiasC* simiasH* simiasS* env* soap*
|
|
+ rm -f *.xml simias.nsmap simiasC* simiasH* simiasS* env* soap*
|
|
rm -rf $(COMMON_CLEAN_FILES)
|
|
|
|
distclean-local:
|