Message-ID: <38C57BC3.3009BFC@geocities.com> From: Sahab Yazdani Organization: PheonixSoft Inc. X-Mailer: Mozilla 4.7 [en] (Win98; I) X-Accept-Language: en MIME-Version: 1.0 Newsgroups: comp.os.msdos.djgpp Subject: make error (but it compiles fine!) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Lines: 43 Date: Tue, 07 Mar 2000 16:59:31 -0500 NNTP-Posting-Host: 209.103.50.60 X-Complaints-To: abuse AT sprint DOT ca X-Trace: newscontent-01.sprint.ca 952466749 209.103.50.60 (Tue, 07 Mar 2000 17:05:49 EST) NNTP-Posting-Date: Tue, 07 Mar 2000 17:05:49 EST To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp Reply-To: djgpp AT delorie DOT com hello, recently I accidently eased one of my makefile and had to rewrite it (note to self, backup often!). anyways the new makefile works and the program that it makes is ok, *but* (there is always a but isn't there?) at the very end it gives this error: 3: No such file or directory (ENOENT) and here is the makefile: vpath %.o obj vpath %.cc src vpath %.h src BASESET = obj/player.o obj/tank.o obj/terrian.o obj/script.o obj/prjctile.o FRONTENDSET = obj/frontend.o OTHERSET = obj/mass.o obj/ai.o obj/damage.o obj/settings.o STUPIDSET = obj/duction.o obj/grabber.o ALL = $(BASESET) $(FRONTENDSET) $(OTHERSET) $(STUPIDSET) mass.exe : $(ALL) $(DJDIR)/contrib/gr-fx/lib/grfx.a gcc -o3 $(ALL) $(DJDIR)/contrib/gr-fx/lib/grfx.a -o mass.exe obj/%.o : %.cc %.h gcc -g -c $< -o $@ obj/frontend.o : src/frontend/main.src src/frontend/credits.src src/frontend/weapons.src src/frontend/tanks.src src/frontend/names.src gcc -g -c src/frontend.cc -o obj/frontend.o clean: del obj\*.o del mass.exe I appreciate any help that anybody can provide! -- *********************************************************** * Sahab Yazdani * "We are all who we are, no more and no * * Thornhill S.S * less" - al'Lan Mandragoran * *********************************************************** * http://pheonixware.8m.com/ * ***********************************************************