mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-14 04:25:21 +02:00
25 lines
972 B
Makefile
25 lines
972 B
Makefile
#######################################
|
|
# The list of executables we are building seperated by spaces
|
|
# the 'bin_' indicates that these build products will be installed
|
|
# in the $(bindir) directory. For example /usr/bin
|
|
#bin_PROGRAMS=exampleProgram
|
|
|
|
# Because a.out is only a sample program we don't want it to be installed.
|
|
# The 'noinst_' prefix indicates that the following targets are not to be
|
|
# installed.
|
|
noinst_PROGRAMS=exampleProgram
|
|
|
|
#######################################
|
|
# Build information for each executable. The variable name is derived
|
|
# by use the name of the executable with each non alpha-numeric character is
|
|
# replaced by '_'. So a.out becomes a_out and the appropriate suffex added.
|
|
# '_SOURCES' for example.
|
|
|
|
# Sources for the a.out
|
|
exampleProgram_SOURCES= exampleProgram.c
|
|
|
|
# Linker options for a.out
|
|
exampleProgram_LDFLAGS = $(top_srcdir)/$(libName)/$(libName).la
|
|
|
|
# Compiler options for a.out
|
|
exampleProgram_CPPFLAGS = -I$(top_srcdir)/include
|