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
|
##
## Regina - A Normal Surface Theory Calculator
## Makefile Template
##
## Process this file with automake in the top-level directory
## to produce Makefile.in.
##
KDE_OPTIONS=noautodist
SUBDIRS = stubs
EXTRA_DIST = \
README.txt RELEASE.txt \
acinclude.m4.top acx_mpi.m4.ext as-ac-expand.m4.ext cppunit.m4.ext \
kde.m4.ext libtool.m4.ext configure.ac.bot configure.ac.top \
Doxyfile.am Doxyfile.global Makefile.common am_edit \
bcheck.pl conf.change.pl config.guess config.pl config.sub \
cvs-clean.pl cvs.sh debianrules deps.am detect-autoconf.sh index2gloss \
install-sh ltmain.sh missing mkinstalldirs nmcheck oldinclude.m4.in \
ac_gen am_update distcheck insertstub mksums replacetabs
## ----------------------- Custom targets ----------------------------
.PHONY : stubs tabs
stubs :
./insertstub stubs/engine \
`find ../engine -name "*.cpp" -o -name "*.h" -o -name "*.tcc"`
./insertstub stubs/kdeui \
`find ../kdeui -name "*.cpp" -o -name "*.h" -o -name "*.tcc"`
./insertstub stubs/python \
`find ../python -name "*.cpp" -o -name "*.h" -o -name "*.tcc"`
./insertstub stubs/testsuite \
`find ../testsuite -name "*.cpp" -o -name "*.h" -o -name "*.tcc"`
./insertstub stubs/general \
`find ../icons/povray -name "*.pov"`
tabs :
./replacetabs `find .. -name "*.cpp" -o -name "*.h" -o -name "*.tcc"`
./replacetabs `find .. -name "*.txt"`
./replacetabs ../kdeui/doc/en/*.docbook
./replacetabs ../pylib/*.py
./replacetabs ../scripts/*.py
./replacetabs ../utils/tricensus-manager
|