Path: utzoo!attcan!uunet!tut.cis.ohio-state.edu!zaphod.mps.ohio-state.edu!swrinde!ucsd!ucbvax!ANDREW.CMU.EDU!gk5g+ From: gk5g+@ANDREW.CMU.EDU (Gary Keim) Newsgroups: comp.soft-sys.andrew Subject: Re: dofix-problem Message-ID: Date: 9 Jul 90 16:42:29 GMT References: <9007091441.AA13348@issun3.stc.nl> Sender: daemon@ucbvax.BERKELEY.EDU Organization: The Internet Lines: 34 From andrew/config/ImakeMacros.d: 4.2.2 DynamicMultiObject Syntax: DynamicMultiObject(dobj, objs, libs, syslibs) Arguments: dobj - final name for resulting dynamic object (with extension) objs - space separated list of object (.o) files libs - space separated list of library (.a) files which dobj can be dependent upon syslibs - space separated list of system library files to be linked against (most common use: -lm for the math library) Note: All arguments need not be present - but the commas must be there, and the arguments which are to be filled in should be in the correct place with respect to the commas. Expanded Macro: all:: dobj dobj: objs libs $(MAKEDO) $(MAKEDOFLAGS) -o dobj objs libs syslibs Use: Use for creating dynamic object files that are dependent upon several object (.o) files and/or library (.a) files and/or system library files. Put a line like this in your Imakefile, re-run genmake and see if that helps. Gary Keim ATK Group