summaryrefslogtreecommitdiffstats
path: root/progs/Makefile
Commit message (Collapse)AuthorAgeFilesLines
* Never fail `make clean'Dan Nicholson2008-05-071-1/+1
| | | | | | Mostly some pedantic changes such that `make clean' always ignores errors. Also changed the top clean target to do the `touch configs/current' dance instead of realclean.
* Tweak the shell scripting for descending into and building subdirs.Brian2007-05-091-2/+2
| | | | | | | | | | | | | | In general, use this: @for dir in $(SUBDIRS) ; do \ if [ -d $$dir ] ; then \ (cd $$dir && $(MAKE)) || exit 1; \ fi \ done Basically, silently skip missing subdirs but generate an error and stop if there's a compilation or install problem. This was done inconsistantly before. In once case, a missing subdir was causing us to go into an infinte loop!
* New 'install' targets in makefile. See bug 2372.Brian Paul2006-06-221-0/+2
|
* print current config name before building src and progsBrian Paul2004-08-251-1/+8
|
* Build fixing for FreeBSD. GNU make is installed as gmake, so make a MAKEEric Anholt2004-06-011-2/+2
| | | | | | variable (defaults to "make") and use that. Use the MKDEP and MKDEP_OPTIONS more. Our shell isn't bash, so change the instances of ">& /dev/null" to a more compatible "> /dev/null 2>&1".
* Use tcc and the emitted C code from s_fragprog_to_c.c to dynamically compileKeith Whitwell2004-04-141-1/+1
| | | | | | | | | and execute fragment programs. Very limited and experimental, but works well enough to run arbfplight.c. http://fabrice.bellard.free.fr/tcc/ Compile with 'make linux-tcc', being sure to make clean first.
* for make clean, include tests directoryBrian Paul2004-04-031-1/+1
|
* Don't use pushd/popd.Brian Paul2004-03-261-6/+2
|
* New Makefile systemBrian Paul2004-03-261-0/+27