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/Makefile.am
jeggermo 840717bea8 new Mutation operators for eoParseTree in src/gp/eoGpMutate.h
a symbolic regression example program added to the app-dir

configure.in and Makefile(s).am changed
2001-06-28 14:03:59 +00:00

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
###############################################################################