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
2003-02-28 16:49:19 +00:00

17 lines
534 B
Makefile

###############################################################################
##
## Makefile.am for app dir in eo
##
###############################################################################
SUBDIRS = mastermind gpsymreg gprop
###############################################################################
all:
for i in $(SUBDIRS); do cd $$i && $(MAKE) all; cd ..; done
clean:
for i in $(SUBDIRS); do cd $$i && $(MAKE) clean; cd ..; done
###############################################################################