This repository has been archived on 2026-03-28. You can view files and clone it, but you cannot make any changes to its state, such as pushing and creating new issues, pull requests or comments.
eodev/eo/app/gpsymreg/Makefile.am
2001-12-03 16:38:52 +00:00

25 lines
840 B
Makefile

###############################################################################
#
# Makefile.am for app/gpsymreg
#
###############################################################################
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
###############################################################################
bin_PROGRAMS = gpsymreg
###############################################################################
gpsymreg_SOURCES = main.cpp
gpsymreg_DEPENDENCIES = $(DEPS)
gpsymreg_LDFLAGS = -lm
gpsymreg_LDADD = $(LDADDS)
###############################################################################