2002-10-11 21:29:23 +04:00
|
|
|
SUBDIRS = test1-static test2-dynamic test3-twomodules test4-interdep test5-execsymbols
|
2002-10-11 18:51:27 +04:00
|
|
|
|
|
|
|
all:
|
|
|
|
for i in $(SUBDIRS); do make -C $$i all; done
|
|
|
|
|
2002-10-11 20:22:18 +04:00
|
|
|
test: all
|
2002-10-11 20:08:43 +04:00
|
|
|
for i in $(SUBDIRS); do make -C $$i test; done
|
|
|
|
|
2002-10-11 18:51:27 +04:00
|
|
|
clean:
|
|
|
|
for i in $(SUBDIRS); do make -C $$i clean; done
|