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
|
## Process this file with automake to produce Makefile.in
#
# Information for automake
#
AUTOMAKE_OPTIONS = dist-zip
SUBDIRS = Source Docs
docdir = $(prefix)/doc/$(PACKAGE)-$(VERSION)
doc_DATA = AUTHORS COPYING ChangeLog INSTALL NEWS README
EXTRA_DIST = \
Docs/robodoc.1 \
Docs/robohdrs.1 \
Docs/robodoc.rc \
Docs/manual.html \
Docs/manual.xml \
Headers/assembler.sample \
Headers/basic.sample \
Headers/c.sample \
Headers/cpp.sample \
Headers/fortan.sample \
Headers/html.sample \
Headers/tcl.sample \
Source/makefile.plain \
Source/makefile.win32 \
Source/makefile.bcc \
Source/makefile.wingcc \
Examples/PerlExample/robodoc.rc \
Examples/PerlExample/Source/Box/RectangularBox.pm \
Examples/PerlExample/Source/Box/SquareBox.pm \
Examples/PerlExample/Source/Box.pm \
Examples/PerlExample/Source/Cargo.txt \
Examples/PerlExample/Source/Loader.txt \
Examples/PerlExample/Source/SmartLoader.pm \
Examples/PerlExample/Source/TruckPacker.pl \
Win32/robodoc.dsp \
Win32/robodoc.dsw
#
# 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
|