You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
1.1 KiB
Makefile
37 lines
1.1 KiB
Makefile
15 years ago
|
#
|
||
|
#
|
||
|
|
||
|
MAINTAINERCLEANFILES = Makefile.in
|
||
|
|
||
|
lib_LTLIBRARIES = libnelligo.la
|
||
|
|
||
|
libnelligo_la_SOURCES = ligo_config.cpp \
|
||
|
ligo_error.cpp \
|
||
|
ligo_error.h \
|
||
|
ligo_material.cpp \
|
||
|
ligo_material.h \
|
||
|
primitive.cpp \
|
||
|
primitive_class.cpp \
|
||
|
primitive_configuration.cpp \
|
||
|
transition.cpp \
|
||
|
transition.h \
|
||
|
zone_bank.cpp \
|
||
|
zone_bank.h \
|
||
|
zone_edge.cpp \
|
||
|
zone_edge.h \
|
||
|
zone_region.cpp \
|
||
|
zone_region.h \
|
||
|
zone_template.cpp \
|
||
|
zone_template.h \
|
||
|
primitive_utils.cpp
|
||
|
|
||
|
AM_CXXFLAGS = -I$(top_srcdir)/src
|
||
|
|
||
|
libnelligo_la_LIBADD = -lc -lpthread
|
||
|
|
||
|
libnelligo_la_LDFLAGS = -version-info @LIBTOOL_VERSION@
|
||
|
|
||
|
|
||
|
# End of Makefile.am
|
||
|
|