summaryrefslogtreecommitdiff
path: root/cleopatre/application/cwmp/Makefile
AgeCommit message (Collapse)Author
2013-03-08cleo/app: rename 'cleo_base' by 'cleo_dir' in makefileThierry Carré
Standardize cleo_dir in application folder. Later, one day, that will be easier to factorize makefile.
2012-11-30cleo/app: update applications to use the response file, closes #3416Olivier Dufour
2012-07-18cleo/{app,devkit/plcd}/Makefile: fix dependency on "obj" dir, refs #3255Yacine Belkadi
The "obj" directory needs to be created before any "*.o" file. So "$(OBJPATH)" needs to be a prerequisite of the "$(OBJS)" target, instead of the final binary's target. By using the "|" of GNU Make, the "$(OBJPATH)" target is only made if "obj" doesn't exist, without considering the directory's timestamp. As a consequence, the "-p" option of "mkdir -p obj" is not necessary.
2012-03-30cleo/app: fix sub make invocations, refs #3056Yacine Belkadi
When building the bundle, warnings similar to the one below appear: make[2]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. This comes from the recursive "make" calls in the makefiles. "$(MAKE)" or "+make" should be used instead.
2012-03-29cleopatre/application: add remove obj dir on clean command, refs #3046Nélio Laranjeiro
2012-01-11cleo/app/cwmp: use dynamic linking, refs #2901Yacine Belkadi
Use dynamic linking against libspid, in order to reduce the size of the generated binary.
2011-01-18cleo/app/cwmp: fix the MakefileYacine Belkadi
We need nvram.h and spid_img_desc.h. The Makefile was using those in cleopatre/linux-2.6.25.10-spc300/include/asm-arm/arch-spc300 instead of using those in cleopatre/include. The Makefile was also referencing LINUX_DIR/include which is not necessary.
2011-01-04cleo/app/cwmp: CPE WAN Management Procotol (TR-069) - Initial commitYacine Belkadi