Hi Alex,
include $(TOPDIR)/MakeTemplate.exe
..
Sometimes I have to disable some of the MakeTemplates, for example don't build the .exe type above. I wonder, if there is a nice way to do that?
It's a bit hard to understand what you are trying to do exactly, but is it enough to just put the include statement inside of an ifndef? For example:
ifndef disable.exe include $(TOPDIR)/MakeTemplate.exe endif
then you can stop including the template by setting the disable.exe variable, either in the Makefile, or from the command line e.g. make "disable.exe=1"
Best regards, Ian
---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.778 / Virus Database: 525 - Release Date: 2004/10/15
_______________________________________________ Help-make mailing list [EMAIL PROTECTED] http://lists.gnu.org/mailman/listinfo/help-make
