Return to BSD News archive
Path: euryale.cc.adfa.oz.au!newshost.anu.edu.au!harbinger.cc.monash.edu.au!nntp.coast.net!news.kei.com!newsfeed.internetmci.com!news.uoregon.edu!vixen.cso.uiuc.edu!newsrelay.iastate.edu!news.iastate.edu!eng3.iastate.edu!sehari From: sehari@iastate.edu (Babak $ehari) Newsgroups: comp.unix.programmer,comp.unix.bsd.misc,comp.unix.questions Subject: A make file question(Stanford's interviews library) Date: 14 Jul 96 06:26:00 GMT Organization: Iowa State University of Science and Technology, Ames, Iowa. Lines: 45 Message-ID: <sehari.837325560@eng3.iastate.edu> NNTP-Posting-Host: eng3.iastate.edu Originator: sehari@eng3.iastate.edu Xref: euryale.cc.adfa.oz.au comp.unix.programmer:39551 comp.unix.bsd.misc:1243 comp.unix.questions:84358 --- I have following Imake file for use with ivmkfm: # Tue Aug 29 10:39:59 PDT 1989 (dredge--stanford) # Makefile for making release versions of the plot software. # This file is not for release itself. It is on the development machine # and will create a sub-directory called "Release/" which contains # release versions of the software. # Various Directory lists from which make release-ing will be done. PROGS= dplot LIBS= gplot high2 f77links MISC= plot1d_f77 UTIL= utils SUPP= tool plotcap # tool must be before plotcap (it may add to the plotcap src) DIRS= $(LIBS) $(SUPP) $(PROGS) $(MISC) $(UTIL) Subdirs($(DIRS), /*makeflags*/) ^^^^^^^^^^^^^^^^^^^^^ Should I replace this with something? #ifdef STANFORD RELEASEDIR=Release MakeReleaseSubdirs(/*depends*/ ,/*makeflags*/ ,$(DIRS)) #endif Which generates a make file that has dependency error on the line 171 I just print line 171 of makefile: Subdirs($(DIRS), ) I appreciate any help in this regard. With highest regards, Babak E. Sehari