19 lines
453 B
Makefile
19 lines
453 B
Makefile
noinst_LIBRARIES = libArray.a
|
|
|
|
libArray_a_SOURCES = array.cxx array.hxx
|
|
|
|
bin_PROGRAMS = testarray
|
|
|
|
testarray_SOURCES = testarray.cxx
|
|
|
|
testarray_LDADD = \
|
|
$(top_builddir)/Tools/Construct/Array/libArray.a \
|
|
$(top_builddir)/Lib/Bucket/libBucket.a \
|
|
$(top_builddir)/Lib/Math/libMath.a \
|
|
$(top_builddir)/Lib/Misc/libMisc.a \
|
|
$(top_builddir)/Lib/zlib/libz.a
|
|
|
|
INCLUDES += \
|
|
-I$(top_builddir) \
|
|
-I$(top_builddir)/Lib \
|
|
-I$(top_builddir)/Tools/Construct
|