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/tutorial/Makefile
evomarc 26481ab36b Modified the Makefile.am in main dir, and Makefile in tutorial dir to remove
all pushd/popd as they don't exist in Windows/bash
2001-10-18 04:34:58 +00:00

26 lines
385 B
Makefile

SUBDIRS = Lesson1 Lesson2 Lesson3 Lesson4
all:
for i in $(SUBDIRS); do cd $$i && $(MAKE) all; cd ..; done
lesson1 :
cd Lesson1; make
lesson2 :
cd Lesson2; make
lesson3 :
cd Lesson3; make
lesson4 :
cd Lesson4; make
#empty dist and distdir to let top-level 'make' do its job
dist :
distdir :
check :
clean:
for i in $(SUBDIRS); do cd $$i && $(MAKE) clean; cd ..; done