|
Makefile for unix/gcc:
|
/*
Just execute acdkmake in this directory
*/
// needed for base definitions
#include "amake_config.csf"
// Create a standard ACDK console executable
minacdksample = new acdk.make.AcdkExeTask("minacdksample");
// add a single source. This also excepts pattern
// like "src/acdk/bla/*.cpp"
// or "src/acdk/blub/**/*.cpp"
minacdksample.addSource("minacdksample.cpp");
// this uses acdk_core library
minacdksample.addAcdkLib("acdk_core");
// make a project
default = new acdk.make.AcdkProjectTask("default");
default.addSubTask("minacdksample");
|
Use acdk_boot as sample
ACDK Boot is small sample project which, which can be used
as a template for creating own projects.
Generate own Makefiles/Project using acdklisp
Platform makes.