Tools
imake.asc
Associated article: Extending imake
Tags: Tools
_EXTENDING IMAKE_ by Kamran Husain Example 1: Definitions of make variables. # This is a simple Imakefile for SRCS=myfile.c another.c OBJS=$(SRCS:.c=.o) MYLIBS=-lm SingleProgramTarget(myfile,$(OBJS),$(MYLIBS),NullParameter) Example 2: General structure of Imake.tmpl file; (a) ...


