I'm trying to learn the gnustep make file system in osx.
I want to mix obj-c and c++ code, I found some posts in the list and suppose it's possible,
I read the manual but ins't a tutorial and I can't find one that covers the system beyond the very basic.
# GNUmakefile
include $(GNUSTEP_MAKEFILES)/common.make
APP_NAME = PanelTest
PenelTest_CC_FILES = testMake.cc
include $(GNUSTEP_MAKEFILES)/application.make
This is gnustep-make 2.4.0. Type 'make print-gnustep-make-help' for help.
Making all for app PanelTest...
Linking app PanelTest ...
Undefined symbols:
"Simple::Simple(int)", referenced from:
_main in source.mm.o
"Simple::getNumero()", referenced from:
_main in source.mm.o
_main in source.mm.o
"Simple::setNumero(int)", referenced from:
_main in source.mm.o
ld: symbol(s) not found
collect2: ld returned 1 exit status
make[3]: *** [PanelTest.app/Contents/MacOS/PanelTest] Error 1
make[2]: *** [internal-app-run-compile-submake] Error 2
make[1]: *** [PanelTest.all.app.variables] Error 2
make: *** [internal-all] Error 2