1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-14 20:45:22 +02:00
cdt/build/org.eclipse.cdt.autotools.ui/templates/projecttemplates/AutotoolsSharedLibraryProject/libExample/Makefile.am

20 lines
620 B
Text
Raw Normal View History

#######################################
# 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