---------- Forwarded message ----------
Date: Thu, 27 Jul 2000 13:06:54 -0400
From: Thomas Gagne <[EMAIL PROTECTED]>
Reply-To: [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Subject: http://gnustep.it/nicola/Tutorials/WritingMakefiles/node2.html
When I follow the instructions in the link above, I get the following result:
tgagne:/home/tgagne/work/objc make -f GNUMakefile
Configuration name missing.
Usage: /usr/local/GNUstep/Makefiles/config.sub CPU-MFR-OPSYS
or /usr/local/GNUstep/Makefiles/config.sub ALIAS
where ALIAS is a recognized configuration type.
/usr/local/GNUstep/Makefiles/common.make:64:
/usr/local/GNUstep/Makefiles///config.make: No such file or directory
make: *** No rule to make target
`/usr/local/GNUstep/Makefiles///config.make'. Stop.
For reference, I've included both the makefile and the source file. I'm
getting this exact same error trying to compile any of the other source files
except gstep-core.... extensions and gstep-db are both giving me this same
problem.
include $(GNUSTEP_MAKEFILES)/common.make
TOOL_NAME = LogTest
LogTest_OBJC_FILES = source.m
include $(GNUSTEP_MAKEFILES)/tool.make
#import <Foundation/Foundation.h>
int main(void)
{
NSLog(@"Executing");
return 0;
}