25 lines
536 B
Text
25 lines
536 B
Text
|
#
|
||
|
# $Id: Makefile.am,v 1.1 2005/04/04 09:45:06 cado Exp $
|
||
|
#
|
||
|
|
||
|
MAINTAINERCLEANFILES = Makefile.in
|
||
|
|
||
|
SUBDIRS = shapes groups fonts
|
||
|
|
||
|
bin_PROGRAMS = cluster_viewer
|
||
|
|
||
|
cluster_viewer_SOURCES = main.cpp
|
||
|
|
||
|
cluster_viewerdir = $(datadir)/nel/samples/cluster_viewer
|
||
|
|
||
|
cluster_viewer_DATA = readme.txt main.cvs
|
||
|
|
||
|
AM_CXXFLAGS = -DCV_DIR="\"$(cluster_viewerdir)\"" -I$(top_srcdir)/src
|
||
|
|
||
|
cluster_viewer_LDADD = ../../../src/misc/libnelmisc.la \
|
||
|
../../../src/3d/libnel3d.la
|
||
|
|
||
|
|
||
|
# End of Makefile.am
|
||
|
|