L
lhommedumatch
Hello
I'm working on a C++ project on linux and I want to use autotools.
Before that I need to change the organization of the projects.
For the moment, this is how it is organized:
bin for binaries
DEV/Makefile : a makefile for all the project
DEV/SOC/src => source code for socket classes
DEV/SOC/include => headers of socket classes
DEV/SOC/obj => .o files
DEV/DRI/src => .cc class for drivers
DEV/DRI/include => headers of drivers
DEV/DRI/obj => .o
and so on
DEV/LIB => libraries needed by the project
On open-sources project, I see :
src/
and then directory for each package:
src/socket (in this case) where you have ".cc", ".h" and ".o"
Is there rules for the source code organization?
With autotools I need to put a Makefile.am in each directory that's
why I want to reorganize everything.
Any ideas will help me.
Thanks
I'm working on a C++ project on linux and I want to use autotools.
Before that I need to change the organization of the projects.
For the moment, this is how it is organized:
bin for binaries
DEV/Makefile : a makefile for all the project
DEV/SOC/src => source code for socket classes
DEV/SOC/include => headers of socket classes
DEV/SOC/obj => .o files
DEV/DRI/src => .cc class for drivers
DEV/DRI/include => headers of drivers
DEV/DRI/obj => .o
and so on
DEV/LIB => libraries needed by the project
On open-sources project, I see :
src/
and then directory for each package:
src/socket (in this case) where you have ".cc", ".h" and ".o"
Is there rules for the source code organization?
With autotools I need to put a Makefile.am in each directory that's
why I want to reorganize everything.
Any ideas will help me.
Thanks