2002-10-16 19:04:44 +04:00
|
|
|
SUBDIRS = test1-static test2-dynamic test3-twomodules test4-interdep test5-execsymbols test6-ltdlopen test7-win32dll test8-execlass test9-modclass test10-modvirtual test11-modglobalconstr
|
2002-10-11 18:51:27 +04:00
|
|
|
|
2002-10-12 15:57:33 +04:00
|
|
|
all: build_libltdl
|
2002-10-16 19:09:51 +04:00
|
|
|
-for i in $(SUBDIRS); do (echo Entering $$i; cd $$i && make all; echo Leaving $$i;); done
|
2002-10-11 18:51:27 +04:00
|
|
|
|
2002-10-12 16:00:44 +04:00
|
|
|
build_libltdl:
|
|
|
|
cd libltdl; make all
|
|
|
|
|
2002-10-11 20:22:18 +04:00
|
|
|
test: all
|
2002-10-16 17:05:17 +04:00
|
|
|
sh ./testscript
|
2002-10-11 20:08:43 +04:00
|
|
|
|
2002-10-11 18:51:27 +04:00
|
|
|
clean:
|
2002-10-16 18:56:26 +04:00
|
|
|
for i in $(SUBDIRS); do (echo Entering $$i; cd $$i && make clean; echo Leaving $$i;); done
|
2002-10-11 22:15:27 +04:00
|
|
|
|
|
|
|
dist-clean: clean
|
2002-10-15 01:01:39 +04:00
|
|
|
cd libltdl; make distclean
|
2002-10-16 19:04:44 +04:00
|
|
|
rm -rf Makefile */Makefile config.h config.log config.status libtool testscript
|