# # File name: configure.ac # Created: 05/28/2005 # Created by: Ljubomir Buturovic # Purpose: automake Makefile.am file for Pattern Classification # Program (PCP). # # Copyright 2005 Ljubomir J. Buturovic # # Permission is hereby granted, free of charge, to any person # obtaining a copy of this software and associated documentation files # (the "Software"), to deal in the Software without restriction, # including without limitation the rights to use, copy, modify, merge, # publish, distribute, sublicense, and/or sell copies of the Software, # and to permit persons to whom the Software is furnished to do so, # subject to the following conditions: # # The above copyright notice and this permission notice shall be # included in all copies or substantial portions of the Software. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. # bin_PROGRAMS = pcp pcp_SOURCES = src/pcp.c \ src/pkbd.c \ src/mlp.c \ src/estimate_error.c \ src/hash.c \ src/hash_util.c \ src/fsort.c \ src/sedgesort.c \ src/insort.c \ src/lau.c \ src/xlearn.c \ src/intsedgesort.c \ src/intsort.c \ src/intinsort.c \ src/pau.c \ src/svd.c \ src/emap.c \ src/lmat.c \ src/bagging.c \ src/p_svm.c \ src/load_dset.c \ src/ddset.c \ src/adaboost.c \ src/heap.c \ src/lind.c \ src/knn.c \ src/fselect.c \ src/cda.c \ src/conjg.c \ src/dataset.c \ src/simplex.c \ src/pac.c \ src/parametric.c \ src/p_lind.c \ src/lin.c \ src/widrow.c \ src/xpar.c \ src/p_disp.c \ src/svm.cpp \ src/pcl_svm.c \ src/pcp.h \ src/lau.h \ src/pau.h \ src/mlp.h \ src/lmat.h \ src/sort.h \ src/cda.h \ src/heap.h \ src/knn.h \ src/bagging.h \ src/lind.h \ src/emap.h \ src/hash.h \ src/hash_util.h \ src/adaboost.h \ src/intsort.h \ src/lerr.h \ src/svm.h \ src/ddset.h \ src/dataset.h \ src/pcl_svm.h \ src/conjg.h \ src/simplex.h \ src/crit.h \ src/widrow.h \ src/lin.h \ src/parametric.h \ src/xpar.h \ src/xlearn.h \ src/estimate_error.h \ src/fselect.h \ src/p_mlp.c pcp_LDADD=lapack/liblapack.a @pcp_libs@ CFLAGS=-O3 -Wall CXXFLAGS=-O3 -Wall SUBDIRS=lapack AUTOMAKE_OPTIONS = foreign subdir-objects