discuss-gnustep
[Top][All Lists]
Advanced

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

Uhm????


From: Chris Vetter
Subject: Uhm????
Date: Sun, 30 Jul 2006 15:13:29 +0200

Hi,

I'm trying to compile a VERY simple application -- just one file, main.m, with just one function, main() -- and when I try to run 'make' I get the following:

  :0> gmake
  gmake[1]: Entering directory `/Users/cbv/src/foobar'
  gmake[1]: --no-print-directory: No such file or directory
  gmake[1]: *** No rule to make target `--no-print-directory'.  Stop.
  gmake[1]: Leaving directory `/Users/cbv/src/foobar'
  gmake: *** [Foobar.all.app.variables] Error 2

The GNUmakefile has nothing special in it:

  MAKEFLAGS  += -s
  MAKEFLAGS  += warn=yes diagnose=yes debug=no messages=yes
  MAKEFLAGS  += shared=yes strip=yes

  APP_NAME = Foobar
  ${APP_NAME}_OBJC_FILES = main.m
  include $(GNUSTEP_MAKEFILES)/application.make

Neither does main.m:

  int main(int argc, const char **argv)
  {
    return 0;
  }

I also commented the first MAKEFLAGS line, but that didn't give me any idea either.
Any hints what may be happening here???

--
Chris






reply via email to

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