From: voyager_2000 AT my-dejanews DOT com Newsgroups: comp.os.msdos.djgpp Subject: Newbie needs help with make Date: Wed, 05 May 1999 12:49:38 GMT Organization: Deja News - The Leader in Internet Discussion Lines: 67 Message-ID: <7gpep1$cpl$1@nnrp1.dejanews.com> NNTP-Posting-Host: 204.180.108.155 X-Article-Creation-Date: Wed May 05 12:49:38 1999 GMT X-Http-User-Agent: Mozilla/4.51 [en] (Win98; I) X-Http-Proxy: 1.0 x13.dejanews.com:80 (Squid/1.1.22) for client 204.180.108.155 To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp Reply-To: djgpp AT delorie DOT com Can anyone help me with making Jlib? I'm trying to make the Jlib library using Djgpp. I think I've followed all the directions so far. These were the last building instructions: Run make to build the library 1. Perform any commands to set up your compilation environment as you normally would before compiling programs. 2. Run your make program from the jlib\source directory. The library, demonstration programs and utilities should compile. 3. Once the build has finished, try running the demonstration program to check the target . When I try to run make.exe from the source directory and I try to make the makefile it gives me the following message: make makefile:18 target/common: No such file or directory (ENOENT) makefile:22 target/clean.dos: No such file or directory (ENOENT) make.exe: *** No rule to make target 'target/clean.dos' . Stop The actual makefile is as follows: # Makefile for DJGPP_V2 CC = gcc LIBS = -lj DEL = del COPY = copy #Change this to where your djgpp library files are installed LIBDIR = C:\Software\DevStudio\MyProjects\DJGPP\lib\gcc-lib\djgpp\2.81 #Full optimisation suitable for JLIB_PRODUCTION build #CFLAGS = -O3 -Wall -I #Full debugging information suitable for JDEBUG or JLIB_PARANOID build CFLAGS = -g -Wall -I TARGET = target/dj_vesa/palette.o target/dj_vesa/misc.o \ target/dj_vesa/uclock.o target/dj_vesa/kb.o \ target/dj_vesa/mouse.o target/dj_vesa/blit.o target/dj_vesa/joystick.o include target/common %.exe : %.c ; $(CC) $(CFLAGS) $< -o $@ $(LIBS) include target/clean.dos clean : partialclean del target\dj_vesa\*.o Since I'm a beginner I really have no clue on what to type in in the make.exe program. If I just type in "makefile" it normally says nothing can be done for it. Can someone please tell me what I'm doing wrong, and how to do it right? Awaiting response, Voyager_2000 -----------== Posted via Deja News, The Discussion Network ==---------- http://www.dejanews.com/ Search, Read, Discuss, or Start Your Own