2 # Makefile.in for the examples
7 ########################################
11 top_srcdir
= @top_srcdir@
15 DEVDIR
= ${DISTDIR}/Developer
16 USRDIR
= ${DISTDIR}/User
18 DEVEXDIR
= ${DEVDIR}/Examples
19 USREXDIR
= ${USRDIR}/Examples
24 INSTALL_DATA
= @INSTALL_DATA@
31 ########################################
38 ########################################
40 .PHONY
: all clean distclean maintainer-clean bindist
50 maintainer-clean
: distclean
55 $(INSTALL
) -d
$(DEVEXDIR
) #$(USREXDIR)
56 for d in Device Extras Low-level
; do \
57 cd
$(srcdir) && find
$${d} -type f
-and
-not
-path
'*CVS*' \
58 -exec
$(INSTALL_DATA
) -D
{} $(DEVEXDIR
)/{} \
; ; \
60 # for d in Extras; do \
61 # find $${d} -type f -and -not -path '*CVS*' \
62 # -exec $(INSTALL_DATA) -D {} $(USREXDIR)/{} \; ; \
67 # Auto-remake autoconf stuff
68 ########################################
70 Makefile
: Makefile.in ..
/config.status
71 (cd ..
&& .
/config.status
)
76 ########################################