mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-14 20:45:22 +02:00
20 lines
620 B
Text
20 lines
620 B
Text
![]() |
#######################################
|
||
|
# The list of libraries we are building seperated by spaces.
|
||
|
# The 'lib_' indicates that these build products will be installed
|
||
|
# in the $(libdir) directory. For example /usr/lib
|
||
|
lib_LTLIBRARIES = $(libName).la
|
||
|
|
||
|
#######################################
|
||
|
# Build information for each library
|
||
|
|
||
|
# Sources for $(libName)
|
||
|
$(libName)_la_SOURCES = $(libName).c
|
||
|
|
||
|
# Linker options libTestProgram
|
||
|
$(libName)_la_LDFLAGS =
|
||
|
|
||
|
# Compiler options. Here we are adding the include directory
|
||
|
# to be searched for headers included in the source code.
|
||
|
$(libName)_la_CPPFLAGS = -I$(top_srcdir)/include
|
||
|
|