~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to libdrizzle/include.am

  • Committer: Lee Bieber
  • Date: 2011-03-07 18:45:40 UTC
  • mfrom: (2221.1.8 only-libdrizzle)
  • mto: This revision was merged to the branch mainline in revision 2222.
  • Revision ID: kalebral@gmail.com-20110307184540-grw6ljb1ojab4ojz
Merge Monty - Allows folks to only build and install libdrizzle

Show diffs side-by-side

added added

removed removed

Lines of Context:
138
138
        libdrizzle/drizzle_server.h.gch \
139
139
        libdrizzle/common.h.gch
140
140
 
 
141
libdrizzle: libdrizzle/libdrizzle.la
 
142
install-libdrizzle:
 
143
        test -z "$(libdir)" || $(MKDIR_P) "$(DESTDIR)$(libdir)"
 
144
        $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) libdrizzle/libdrizzle.la "$(DESTDIR)$(libdir)"
 
145
        test -z "$(includedir)" || $(MKDIR_P) "$(DESTDIR)$(includedir)"
 
146
        @list='$(nobase_dist_include_HEADERS)'; test -n "$(includedir)" || list=; \
 
147
        $(am__nobase_list) | while read dir files; do \
 
148
          if test "x$$dir" = "xlibdrizzle" ; then \
 
149
            xfiles=; for file in $$files; do \
 
150
              if test -f "$$file"; then xfiles="$$xfiles $$file"; \
 
151
              else xfiles="$$xfiles $(srcdir)/$$file"; fi; done; \
 
152
            test -z "$$xfiles" || { \
 
153
              test "x$$dir" = x. || { \
 
154
                echo "$(MKDIR_P) '$(DESTDIR)$(includedir)/$$dir'"; \
 
155
                $(MKDIR_P) "$(DESTDIR)$(includedir)/$$dir"; }; \
 
156
              echo " $(INSTALL_HEADER) $$xfiles '$(DESTDIR)$(includedir)/$$dir'"; \
 
157
              $(INSTALL_HEADER) $$xfiles "$(DESTDIR)$(includedir)/$$dir" || exit $$?; }; \
 
158
          fi; \
 
159
        done