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
|
## Process this file with automake to produce Makefile.in
#
# Information for automake
#
AUTOMAKE_OPTIONS = dist-zip
SUBDIRS = Docs Source
EXTRA_DIST = \
Docs/robodoc.1 \
Docs/robodoc.html \
Docs/main.css \
Examples/C/prog1.c \
Examples/C/prog2.c \
Examples/C/prog1.c.html \
Examples/C/prog2.c.html \
Examples/C/makefile \
Examples/CPP/muppets.h \
Examples/CPP/muppets.cpp \
Examples/CPP/masterindex.html \
Examples/CPP/muppets.h.html \
Examples/CPP/muppets.cpp.html \
Examples/CPP/makefile \
Headers/assembler.sample \
Headers/basic.sample \
Headers/c.sample \
Headers/cpp.sample \
Headers/fortan.sample \
Headers/html.sample \
Headers/tcl.sample \
Source/makefile.plain
#
# End of automake stuff
#
myclean:
rm -f *~
rm -f makefile.in
rm -f *.tar.gz *.zip
rm -f *.log aclocal.m4 config.cache
rm -f install-sh
rm -f mkinstalldirs
rm -f missing makefile
rm -f configure config.status
$(MAKE) -f makefile.am -C Docs myclean
$(MAKE) -f makefile.am -C Source myclean
$(MAKE) -C Examples myclean
Docs/robodoc.html :
$(MAKE) -C Docs robodoc.html
Examples/C/prog1.c.html :
$(MAKE) -C Examples/C prog1.c.html
Examples/C/prog2.c.html :
$(MAKE) -C Examples/C prog2.c.html
Examples/CPP/masterindex.html :
$(MAKE) -C Examples/CPP masterindex.html
Examples/CPP/muppets.h.html :
$(MAKE) -C Examples/CPP muppets.h.html
Examples/CPP/muppets.cpp.html :
$(MAKE) -C Examples/CPP muppets.cpp.html
#
#
#
docall:
$(MAKE) -C Source html
|