68user's page 掲示板

Prev< No. 45> Next  [最新発言に戻る] [過去ログ一覧]
No. 45 # ROL [E-mail] 1998/12/11 (金) 00:59
makeの結果こういうメッセージが出ました。
エラーですね
--------
gcc -c http.cc
gcc -c parse.cc
gcc -c flist.cc
gcc -c httpdown.cc
gcc -c url.cc
gcc -c ftp.cc
gcc -c makedef.cc
gcc -c match.cc
gcc http.o parse.o flist.o httpdown.o url.o ftp.o makedef.o match.o -o httpdow
n -lresolv
ld: cannot open -lresolv: No such file or directory
make: *** [httpdown] Error 1
------------

でMakefileの内容です
----------
# makefile for httpdown

# please use c++ compiler
CC = gcc

#
# linker library options
#
# default(SunOS 4.1.1-JL 1 sun4c)
LIBS= -lresolv

# SunOS 5.5 Generic sun4c sparc
# LIBS= -lnsl -lsocket -lresolv

# SunOS 4.1.4 2 sun4m
# LIBS= -lresolv -l44bsd

# AIX
# LIBS=

# Linux
# LIBS=

# HP-UX
# LIBS=

# if some errors with 'gethostname' occured, try to comment out
# next line.
# GETHOSTNAME = -DNEED_GETHOSTNAME

# if debugging (for core dump analysis)
# DEBUG = -g

# compile option
COPT = $(GETHOSTNAME) $(DEBUG)

OBJS = http.o parse.o flist.o httpdown.o url.o ftp.o makedef.o match.o

httpdown: $(OBJS)
    $(CC) $(COPT) $(OBJS) -o httpdown $(LIBS)

urlget: urlget.o url.o ftp.o http.o
    $(CC) $(COPT) urlget.o url.o ftp.o http.o -o urlget $(LIBS)

http.o: http.cc http.h url.h
    $(CC) $(COPT) -c http.cc

ftp.o: ftp.cc ftp.h url.h
    $(CC) $(COPT) -c ftp.cc

url.o: url.cc url.h
    $(CC) $(COPT) -c url.cc

parse.o: parse.cc httpdown.h
    $(CC) $(COPT) -c parse.cc

flist.o: flist.cc http.h httpdown.h
    $(CC) $(COPT) -c flist.cc

makedef.o: makedef.cc
    $(CC) $(COPT) -c makedef.cc

httpdown.o: httpdown.cc httpdown.h http.h url.h ftp.h
    $(CC) $(COPT) -c httpdown.cc

urlget.o: urlget.cc
    $(CC) $(COPT) -c urlget.cc

match.o: match.cc match.h
    $(CC) $(COPT) -c match.cc

----------
ここまでくるとワシには何がなんやらさっぱり(笑)

Prev< No. 45> Next  [最新発言に戻る] [過去ログ一覧]