Date: Sat, 18 Mar 2000 08:03:46 +0500 Message-Id: <200003180303.IAA01193@midpec.com> From: Prashant TR To: djgpp AT delorie DOT com In-reply-to: <38d2cf3f.35417159@news> (rslists@home.com) Subject: Re: Makefile question References: <38d2cf3f DOT 35417159 AT news> Reply-To: djgpp AT delorie DOT com Errors-To: dj-admin AT delorie DOT com X-Mailing-List: djgpp AT delorie DOT com X-Unsubscribes-To: listserv AT delorie DOT com Precedence: bulk On Sat, 18 Mar 2000 00:39:15 GMT, rslists AT home DOT com wrote: > I use the following Makefile structure with UNIX but am getting an > error with DJGPP: > > CXX=gpp > CC=gpp > > PRJ=ltest.exe > OBJS= listTest.o date.o item.o list.o listIter.o node.o > $(PRJ): $(OBJS) # tab is at beginning of next line > $(CCC) $(OBJS) -o $(PRJ) ^^^ There you are. It should be $(CC).