ld.exe权限被拒绝Makefile gcc

时间:2015-05-07 07:16:13

标签: c windows gcc makefile linker

我想编译和链接我的项目。我有链接目标的问题。这是我第一次使用makefile。

我认为$ OBJ或gcc的调用可能存在问题。

我收到以下错误消息:

# makefile to generate UNIT-tests

# define the C compiler to use
CC = gcc

# define any compile-time flags
CFLAGS = -O0 -g -Wall -fmessage-length=0 -fprofile-arcs -ftest-coverage

# define any directories containing header files other than /usr/include
# TODO 

HEADERS =   ./CUnit/headers \
            ./CUnit/sources \
            ./stub \
            ./source \
            ./test
SOURCES =   ./CUnit/sources \
            ./stub \
            ./source \
            ./test

#TODO Linkerflags
LFLAGS = --coverage -o 

# define any libraries to link into executable:
#   if I want to link in libraries (libx.so or libx.a) I use the -llibname 
#   option, something like (this will link in libmylib.so and libm.so:
LIBS = 

#  TODO define the C source files
TST_SRCS = min.c max.c

SRCS = CUnit.c Automated.c Basic.c Console.c CUCurses.c CUError.c  Cunit_intl.c \
        MyMem.c TestDB.c TestRun.c Util.c wxWidget.c \
        $(TST_SRCS)


# define the C object files 
#
# This uses Suffix Replacement within a macro:
#   $(name:string1=string2)
#         For each word in 'name' replace 'string1' with 'string2'

#OBJ = $(SRCS:%.c=%.o)
#OBJ = $(TST_SRCS:%.c=%.o)
OBJ=$(join($(dir $(SOURCES))), $(notdir $(SRCS:%.c=%.o))) 

# define the executable file 
TARGET = CUnit-Target

all: $(TARGET)

$(TARGET): $(OBJ) 
    $(CC) $(CFLAGS) $(HEADERS) $(OBJ) $(LFLAGS) $(TARGET)

    @echo build finished            

#execute tests
#Cunit.exe 
# create coverage files
# TODO SRCS max.c min.c ?
#       gcov -b -c -f max min

clean:
        $(RM) *.o *~ $(MAIN)

# DO NOT DELETE THIS LINE -- make depend needs it

路径上没有空格。

这是我的makefile

{{1}}

0 个答案:

没有答案