1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132
|
AM_CPPFLAGS = -I${top_builddir} -I${top_srcdir}
this_includedir=${includedir}/${subdir}
this_include_HEADERS = \
all.hpp \
argentina.hpp \
australia.hpp \
austria.hpp \
bespokecalendar.hpp \
botswana.hpp \
brazil.hpp \
canada.hpp \
chile.hpp \
china.hpp \
czechrepublic.hpp \
denmark.hpp \
finland.hpp \
france.hpp \
germany.hpp \
hongkong.hpp \
hungary.hpp \
iceland.hpp \
india.hpp \
indonesia.hpp \
israel.hpp \
italy.hpp \
japan.hpp \
jointcalendar.hpp \
mexico.hpp \
newzealand.hpp \
norway.hpp \
nullcalendar.hpp \
poland.hpp \
romania.hpp \
russia.hpp \
saudiarabia.hpp \
singapore.hpp \
slovakia.hpp \
southafrica.hpp \
southkorea.hpp \
sweden.hpp \
switzerland.hpp \
taiwan.hpp \
target.hpp \
thailand.hpp \
turkey.hpp \
ukraine.hpp \
unitedkingdom.hpp \
unitedstates.hpp \
weekendsonly.hpp
cpp_files = \
argentina.cpp \
australia.cpp \
austria.cpp \
bespokecalendar.cpp \
botswana.cpp \
brazil.cpp \
canada.cpp \
chile.cpp \
china.cpp \
czechrepublic.cpp \
denmark.cpp \
finland.cpp \
france.cpp \
germany.cpp \
hongkong.cpp \
hungary.cpp \
iceland.cpp \
india.cpp \
indonesia.cpp \
israel.cpp \
italy.cpp \
japan.cpp \
jointcalendar.cpp \
mexico.cpp \
newzealand.cpp \
norway.cpp \
poland.cpp \
romania.cpp \
russia.cpp \
saudiarabia.cpp \
singapore.cpp \
slovakia.cpp \
southafrica.cpp \
southkorea.cpp \
sweden.cpp \
switzerland.cpp \
taiwan.cpp \
target.cpp \
thailand.cpp \
turkey.cpp \
ukraine.cpp \
unitedkingdom.cpp \
unitedstates.cpp \
weekendsonly.cpp
if UNITY_BUILD
nodist_libCalendars_la_SOURCES = unity.cpp
unity.cpp: Makefile.am
echo "/* This file is automatically generated; do not edit. */" > $@
echo "/* Add the files to be included into Makefile.am instead. */" >> $@
echo >> $@
for i in $(cpp_files); do \
echo "#include \"${subdir}/$$i\"" >> $@; \
done
EXTRA_DIST = $(cpp_files)
else
libCalendars_la_SOURCES = $(cpp_files)
endif
noinst_LTLIBRARIES = libCalendars.la
all.hpp: Makefile.am
echo "/* This file is automatically generated; do not edit. */" > ${srcdir}/$@
echo "/* Add the files to be included into Makefile.am instead. */" >> ${srcdir}/$@
echo >> ${srcdir}/$@
for i in $(filter-out all.hpp, $(this_include_HEADERS)); do \
echo "#include <${subdir}/$$i>" >> ${srcdir}/$@; \
done
echo >> ${srcdir}/$@
subdirs='$(SUBDIRS)'; for i in $$subdirs; do \
echo "#include <${subdir}/$$i/all.hpp>" >> ${srcdir}/$@; \
done
|