1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
all: configure
configure: configure.ac Makefile.am \
src/Makefile.am man/Makefile.am doc/Makefile.am
@aclocal
@libtoolize --force --copy
@autoheader
@automake --add-missing --copy
@autoconf
clean:
@if [ -f Makefile ]; then make distclean; fi || true
@rm -rvf *.cache *.log *.status *.m4
@rm -rvf src/Makefile.in src/config.h.in src/config.h src/stamp-h.*
@rm -rvf src/testcases/Makefile.in src/tools/Makefile.in
@rm -rvf osx/Makefile.in osx/libgig.xcodeproj/Makefile.in
@rm -rvf man/Makefile.in doc/Makefile.in doc/html debian/Makefile.in win32/Makefile.in
@rm -rvf Makefile.in config.*
@rm -rvf missing install-sh mkinstalldirs depcomp ltmain.sh
@rm -rvf configure stamp-h.*
@rm -rvf Doxyfile
|