贝贝花花包包店,精品555皮具,钱夹,皮夹

字体:  

makefile文件怎么写啊

dongbangws 发表于: 2008-1-18 14:25 来源: ACE 开发者

我make之后出现这个:
make.exe: *** No rule to make target `.obj/client_handle.o', needed by `client_handle'.  Stop.
是makefile文件的问题吗?
BIN   = client_handle
BUILD = $(VBIN)
SRC = $(addsuffix .cpp,$(BIN))
OBJ= $(addsuffix .o,$(FILES))
LDLIBS=-lACE
LDFLAGS = -L$(PROJ_ROOT)/lib
#---------------------------------------------------
#Include macros and targets
#---------------------------------------------------
include $(ACE_ROOT)/include/makeinclude/macros.GNU
include $(ACE_ROOT)/include/makeinclude/wrapper_macros.GNU
include $(ACE_ROOT)/include/makeinclude/rules.common.GNU
include $(ACE_ROOT)/include/makeinclude/rules.nonested.GNU
include $(ACE_ROOT)/include/makeinclude/rules.bin.GNU
include $(ACE_ROOT)/include/makeinclude/rules.local.GNU
__prebuild__:
        @-:

最新回复

babyblue_993 at 2008-3-11 23:26:46
看样子是没有找到client_handle.cpp,需要确定你的FILES变量是否正确