1####### This is the input file for automake, which will generate Makefile.in ##########
2
3SUBDIRS = gsoap
4CLEANFILES = *~
5VERYVERYCLEANFILES = *~ configure Makefile.in compile config.guess config.sub config.log autoscan.log \
6depcomp install-sh missing mkinstalldirs stamp-h.in config.h.in \
7aclocal.m4 *.cache Makefile
8
9## not a GNU package. You can remove this line, if
10## you have all needed files, that a GNU package needs
11AUTOMAKE_OPTIONS = foreign 1.4
12
13##
14## Add support for pkg-config
15pkgconfigdir = $(libdir)/pkgconfig
16pkgconfig_DATA = gsoap.pc gsoap++.pc gsoapck.pc gsoapck++.pc  gsoapssl.pc gsoapssl++.pc
17
18EXTRA_DIST = gsoap.pc.in gsoap++.pc.in gsoapck.pc.in gsoapck++.pc.in gsoapssl.pc.in gsoapssl++.pc.in
19
20.PHONY: backup
21
22install-data-hook:
23	echo "+--------------------------------------------------------+"; \
24	echo "| You now have successfully built and installed gsoap.   |"; \
25	echo "|                                                        |"; \
26	echo "| You can link your programs with -lgsoap++ for          |"; \
27	echo "| C++ projects created with soapcpp2 and you can link    |"; \
28	echo "| with -lgsoap for C projects generated with soapcpp2 -c |"; \
29	echo "|                                                        |"; \
30	echo "| There are also corresponding libraries for SSL and     |"; \
31	echo "| zlib compression support (-lgsoapssl and lgsoapssl++)  |"; \
32	echo "| which require linking -lssl -lcrypto -lz               |"; \
33	echo "|                                                        |"; \
34	echo "| Thanks for using gsoap.                                |"; \
35	echo "|                                                        |"; \
36	echo "|               http://sourceforge.net/projects/gsoap2   |"; \
37	echo "+--------------------------------------------------------+"; 
38
39## remove also the links for files like install.sh etc. 
40## use only for development of build script and makefiles
41reallyveryveryclean:
42	$(MAKE) distclean
43	for file in $(VERYVERYCLEANFILES);do rm -rf $(VERYVERYCLEANFILES);done;
44
45backup:
46	$(MAKE) clean
47	$(MAKE) distclean
48	CURRENTDIR=`pwd` && \
49	BACKUPDIR=`basename $$CURRENTDIR` && \
50	cd .. && \
51	tar -czhf $$BACKUPDIR.tgz $$BACKUPDIR && \
52	cd $$BACKUPDIR && \
53	ls -l $$CURRENTDIR.tgz
54
55