24 lines
835 B
Makefile
24 lines
835 B
Makefile
###############################################################################
|
|
#
|
|
# Makefile.am for app/gprop
|
|
#
|
|
###############################################################################
|
|
|
|
DEPS = $(top_builddir)/src/libeo.a $(top_builddir)/src/utils/libeoutils.a
|
|
|
|
###############################################################################
|
|
|
|
INCLUDES = -I$(top_builddir)/src
|
|
LDADDS = $(top_builddir)/src/libeo.a $(top_builddir)/src/utils/libeoutils.a
|
|
CXXFLAGS = -g
|
|
###############################################################################
|
|
|
|
bin_PROGRAMS = gprop
|
|
###############################################################################
|
|
|
|
gprop_SOURCES = gprop.cpp
|
|
gprop_DEPENDENCIES = $(DEPS)
|
|
gprop_LDFLAGS = -lm
|
|
gprop_LDADD = $(LDADDS)
|
|
|
|
###############################################################################
|