a symbolic regression example program added to the app-dir configure.in and Makefile(s).am changed
17 lines
538 B
Makefile
17 lines
538 B
Makefile
###############################################################################
|
|
##
|
|
## Makefile.am for app dir in eo
|
|
##
|
|
###############################################################################
|
|
|
|
SUBDIRS = gprop mastermind gpsymreg
|
|
|
|
###############################################################################
|
|
|
|
all:
|
|
for i in $(SUBDIRS); do pushd $$i && $(MAKE) all; popd; done
|
|
|
|
clean:
|
|
for i in $(SUBDIRS); do pushd $$i && $(MAKE) clean; popd; done
|
|
|
|
###############################################################################
|