comparison host/infra/Makefile.in @ 115:6ed91473a1cd ecos-sw-2000-08-21

Merge from eCos master repository on 2000-08-21-22:40:54-BST
author jlarmour
date Fri, 25 Aug 2000 17:32:38 +0000
parents 435cced73e2f
children 511f4dc167f6
comparison
equal deleted inserted replaced
114:5ad2b71d525e 115:6ed91473a1cd
81 81
82 AUTOMAKE_OPTIONS = 1.3 cygnus 82 AUTOMAKE_OPTIONS = 1.3 cygnus
83 SUBDIRS = testsuite 83 SUBDIRS = testsuite
84 84
85 noinst_LIBRARIES = libcyginfra.a 85 noinst_LIBRARIES = libcyginfra.a
86 libcyginfra_a_SOURCES = assert.cxx trace.cxx checkdata.cxx testcase.cxx 86 libcyginfra_a_SOURCES = assert.cxx \
87 87 trace.cxx \
88 88 checkdata.cxx \
89 copies = cyg/infra/cyg_type.h cyg/infra/cyg_ass.h cyg/infra/cyg_trac.h cyg/infra/testcase.h cyg/hal/basetype.h pkgconf/infra.h pkgconf/hostinfra.h hosttest.exp 89 testcase.cxx
90
91
92 copies = cyg/infra/cyg_type.h \
93 cyg/infra/cyg_ass.h \
94 cyg/infra/cyg_trac.h \
95 cyg/infra/testcase.h \
96 cyg/hal/basetype.h \
97 pkgconf/infra.h \
98 pkgconf/hostinfra.h \
99 hosttest.exp
90 100
91 101
92 noinst_HEADERS = $(copies) 102 noinst_HEADERS = $(copies)
93 103
94 CLEANFILES = $(copies) 104 CLEANFILES = $(copies)
365 mkdir $(distdir) 375 mkdir $(distdir)
366 -chmod 777 $(distdir) 376 -chmod 777 $(distdir)
367 @for file in $(DISTFILES); do \ 377 @for file in $(DISTFILES); do \
368 if test -f $$file; then d=.; else d=$(srcdir); fi; \ 378 if test -f $$file; then d=.; else d=$(srcdir); fi; \
369 if test -d $$d/$$file; then \ 379 if test -d $$d/$$file; then \
370 cp -pr $$/$$file $(distdir)/$$file; \ 380 cp -pr $$d/$$file $(distdir)/$$file; \
371 else \ 381 else \
372 test -f $(distdir)/$$file \ 382 test -f $(distdir)/$$file \
373 || ln $$d/$$file $(distdir)/$$file 2> /dev/null \ 383 || ln $$d/$$file $(distdir)/$$file 2> /dev/null \
374 || cp -p $$d/$$file $(distdir)/$$file || :; \ 384 || cp -p $$d/$$file $(distdir)/$$file || :; \
375 fi; \ 385 fi; \