grub2: bring back build of aros-side grub2 tools
[AROS.git] / workbench / devs / AHI / Examples / Makefile.in
blob0173eee22421624bd00e41d5492fba6547e5de1f
2 # Makefile.in for the examples
6 # Autoconfig stuff
7 ########################################
9 @SET_MAKE@
11 top_srcdir = @top_srcdir@
12 srcdir = @srcdir@
13 DISTDIR = @DISTDIR@
15 DEVDIR = ${DISTDIR}/Developer
16 USRDIR = ${DISTDIR}/User
18 DEVEXDIR = ${DEVDIR}/Examples
19 USREXDIR = ${USRDIR}/Examples
21 build_os = @build_os@
23 INSTALL = @INSTALL@
24 INSTALL_DATA = @INSTALL_DATA@
26 VPATH = @srcdir@
30 # Files
31 ########################################
33 TARGETS =
37 # Targets
38 ########################################
40 .PHONY: all clean distclean maintainer-clean bindist
42 all: $(TARGETS)
44 clean:
45 $(RM) $(TARGETS)
47 distclean: clean
48 $(RM) Makefile
50 maintainer-clean: distclean
52 install:
54 bindist: $(TARGETS)
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)/{} \; ; \
59 done
60 # for d in Extras; do \
61 # find $${d} -type f -and -not -path '*CVS*' \
62 # -exec $(INSTALL_DATA) -D {} $(USREXDIR)/{} \; ; \
63 # done
67 # Auto-remake autoconf stuff
68 ########################################
70 Makefile: Makefile.in ../config.status
71 (cd .. && ./config.status)
75 # Rules
76 ########################################