Makefile.am 4.22 KB
Newer Older
1 2 3 4 5
LIBZMQ_DIST = vs2008/libzmq.sln \
              vs2008/libzmq/libzmq.vcproj \
              vs2010/libzmq.sln \
              vs2010/libzmq/libzmq.vcxproj \
              vs2010/libzmq/libzmq.vcxproj.filters \
6 7 8 9 10 11
              vs2010/libzmq/libzmq.props \
              vs2010/libzmq/libzmq.xml \
              vs2010/libzmq.import.props \
              vs2010/libzmq.import.xml \
              vs2010/libsodium.import.props \
              vs2010/libsodium.import.xml \
12 13 14
              vs2012/libzmq.sln \
              vs2012/libzmq/libzmq.vcxproj \
              vs2012/libzmq/libzmq.vcxproj.filters \
15 16 17 18 19 20
              vs2012/libzmq/libzmq.props \
              vs2012/libzmq/libzmq.xml \
              vs2012/libzmq.import.props \
              vs2012/libzmq.import.xml \
              vs2012/libsodium.import.props \
              vs2012/libsodium.import.xml \
21 22 23 24
              vs2013/libzmq.sln \
              vs2013/libzmq/libzmq.vcxproj \
              vs2013/libzmq/libzmq.vcxproj.filters \
              vs2013/libzmq/libzmq.props \
25 26 27 28 29 30
              vs2013/libzmq/libzmq.xml \
              vs2013/libzmq.import.props \
              vs2013/libzmq.import.xml \
              vs2013/libsodium.import.props \
              vs2013/libsodium.import.xml \
              platform.hpp errno.cpp errno.hpp resource.h resource.rc
31

32 33 34 35
PERF_DIST = vs2008/local_lat/local_lat.vcproj \
            vs2008/local_thr/local_thr.vcproj \
            vs2008/remote_lat/remote_lat.vcproj \
            vs2008/remote_thr/remote_thr.vcproj \
36 37
            vs2008/inproc_lat/inproc_lat.vcproj \
            vs2008/inproc_thr/inproc_thr.vcproj \
38 39 40 41
            vs2010/local_lat/local_lat.vcxproj \
            vs2010/local_thr/local_thr.vcxproj \
            vs2010/remote_lat/remote_lat.vcxproj \
            vs2010/remote_thr/remote_thr.vcxproj \
42 43
            vs2010/inproc_lat/inproc_lat.vcxproj \
            vs2010/inproc_thr/inproc_thr.vcxproj \
44 45 46 47
            vs2010/local_lat/local_lat.props \
            vs2010/local_thr/local_thr.props \
            vs2010/remote_lat/remote_lat.props \
            vs2010/remote_thr/remote_thr.props \
48 49
            vs2010/inproc_lat/inproc_lat.props \
            vs2010/inproc_thr/inproc_thr.props \
50 51 52 53
            vs2012/local_lat/local_lat.vcxproj \
            vs2012/local_thr/local_thr.vcxproj \
            vs2012/remote_lat/remote_lat.vcxproj \
            vs2012/remote_thr/remote_thr.vcxproj \
54 55
            vs2012/inproc_lat/inproc_lat.vcxproj \
            vs2012/inproc_thr/inproc_thr.vcxproj \
56 57 58 59
            vs2012/local_lat/local_lat.props \
            vs2012/local_thr/local_thr.props \
            vs2012/remote_lat/remote_lat.props \
            vs2012/remote_thr/remote_thr.props \
60 61
            vs2012/inproc_lat/inproc_lat.props \
            vs2012/inproc_thr/inproc_thr.props \
62 63 64 65
            vs2013/local_lat/local_lat.vcxproj \
            vs2013/local_thr/local_thr.vcxproj \
            vs2013/remote_lat/remote_lat.vcxproj \
            vs2013/remote_thr/remote_thr.vcxproj \
66
            vs2013/inproc_lat/inproc_lat.vcxproj \
67
            vs2013/inproc_thr/inproc_thr.vcxproj \
68 69 70 71
            vs2013/local_lat/local_lat.props \
            vs2013/local_thr/local_thr.props \
            vs2013/remote_lat/remote_lat.props \
            vs2013/remote_thr/remote_thr.props \
72 73
            vs2013/inproc_lat/inproc_lat.props \
            vs2013/inproc_thr/inproc_thr.props
74

75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97
PROPERTIES_DIST = properties/Common.props \
		  properties/DebugDEXE.props \
		  properties/DebugDLL.props \
		  properties/DebugLEXE.props \
		  properties/DebugLIB.props \
		  properties/DebugLTCG.props \
		  properties/Debug.props \
		  properties/DebugSEXE.props \
		  properties/DLL.props \
		  properties/EXE.props \
		  properties/LIB.props \
		  properties/Link.props \
		  properties/LTCG.props \
		  properties/Messages.props \
		  properties/Output.props \
		  properties/ReleaseDEXE.props \
		  properties/ReleaseDLL.props \
		  properties/ReleaseLEXE.props \
		  properties/ReleaseLIB.props \
		  properties/ReleaseLTCG.props \
		  properties/Release.props \
		  properties/ReleaseSEXE.props \
		  properties/Win32.props \
98
		  properties/x64.props
99 100 101

PRECOMPILED_DIST = ../../src/precompiled.hpp \
                   ../../src/precompiled.cpp
102

103
EXTRA_DIST = $(LIBZMQ_DIST) $(PERF_DIST) $(PROPERTIES_DIST) $(PRECOMPILED_DIST)