discuss-gnustep
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Makefile bug?


From: Dennis Leeuw
Subject: Re: Makefile bug?
Date: Tue, 30 Dec 2003 12:30:47 +0100
User-agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.0.0) Gecko/20020623 Debian/1.0.0-0.woody.1

Fred Kiefer wrote:
Dennis Leeuw wrote:

While working on the GNUstep programming tutorial I tried to create examples that showed the gnustep-make abilities for C, Objective-C and GNUstep and the differences in the GNUmakefiles.

I created:
hello.c :
#include <stdio.h>

int main(void)
{
        printf("hello world\n");
}

GNUmakefile :
include $(GNUSTEP_MAKEFILES)/common.make

        CTOOL_NAME = hello
        hello_HEADERS =
        hello_C_FILE = hello.c


Shoudn't this be hello_C_FILES = hello.c?
 From your output you can tell that no file was compiled.

Thanks Fred! That was the problem... overlooked that several times...

Dennis






reply via email to

[Prev in Thread] Current Thread [Next in Thread]