Path: utzoo!attcan!uunet!husc6!rutgers!att!ulysses!andante!alice!andrew From: andrew@alice.UUCP (Andrew Hume) Newsgroups: comp.unix.wizards Subject: Re: Make variables and shell variables Summary: use files as inter-recipe communication Message-ID: <8391@alice.UUCP> Date: 5 Nov 88 06:14:55 GMT References: <8495@cit-vax.Caltech.Edu> Organization: AT&T Bell Laboratories, Murray Hill NJ Lines: 12 the only way i know to communicate between two independently spawned a.out's is the file system. thus, a simple solution might be .c.o: `cat CC` `cat CFLAGS` -c $goo (whatever goo is these days) compiler1: echo compiler1 > CC; echo 'special flags' > CFLAGS and so on. depending on how correct you want things, you may want to have all the .o's depend on CC and CFLAGS.