如何使Makefile在一个目录中编译多个c文件和h文件

时间:2015-07-18 19:39:19

标签: c++ c macos gcc makefile

我想编写一个Makefile来编译一个目录中的多个文件。 在文件夹中,我有5-1.c 5-2.c 5-3.c,它们是主程序。我还有string.c string.h和types.h文件。我的Makefile

all: 5-1 5-2 5-3

5-1: 5-1.c getch.c
    gcc -Wall -v -g -o 5-1 5-1.c getch.c

5-2: 5-2.c getch.c
    gcc -Wall -g -o 5-2 5-2.c getch.c

// The issues happens here. I does not generate string.o
// Also, I feel the format of 5-3 does not looks correct.
// I do not know how to write it here.
5-3: 5-3.o string.o
    gcc -Wall -g -o 5-3 5-3.o string.o

string.o: string.c string.h
    gcc -Wall -g -o string.c string.h types.h

clean:
    rm -f 5-1 5-2 5-3
    rm -rf *.dSYM

当我从终端运行make时,它将创建5-1,5-2和5-3作为执行的程序。 问题发生在5-3。主程序是5-3.c,它包含string.c。

头文件string.h包含types.h。如何修改5-3的gcc来编译这个程序。

我的系统是Mac OX。  $ gcc --version 配置为: - prefix = / Applications / Xcode.app / Contents / Developer / usr --with-gxx-include-dir = / usr / include / c ++ / 4.2.1 Apple LLVM 6.0版(clang-600.0.57)(基于LLVM 3.5svn) 目标:x86_64-apple-darwin13.4.0 线程模型:posix

我的string.c文件

#include "string.h"

char *strcat(char *dst, const char *src)
{
    char* cp = dst;

    while(*cp) {
        cp++;
    }

    while(*src)
    {
        *cp++ = *src++;
    } 

    return dst;
}

我的string.h文件:

#ifndef _STRING_H
#define _STRING_H

#include <stdio.h>
#include "types.h"

#ifndef NULL
#define NULL 0
#endif

char   *strcat(char *, const char *);

#endif /* _STRING_H */

我的types.h文件:

#ifndef _SIZE_T_DEFINED
#define _SIZE_T_DEFINED
    typedef unsigned int uint32_t;
#endif

我觉得Mac OX与其他Linux系统有很大区别。 请告知是否有人可以根据这些编写正确的Makefile。感谢。

1 个答案:

答案 0 :(得分:1)

问题在于制定string.o的规则:

string.o: string.c string.h
    gcc -Wall -g -o string.c string.h types.h

配方实际上并不创建目标文件。我怀疑你想使用-c代替-o,或者可能使用-c -o string.o

此外,虽然将标题列为先决条件是完全合理的,但在编译命令中列出标题是不正常的。