From e1d391d1ab112413603ae4d81ab3c655d1c4d597 Mon Sep 17 00:00:00 2001 From: gustavoromero Date: Tue, 7 Nov 2000 13:02:48 +0000 Subject: [PATCH] adding targets --- eo/Makefile.am | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/eo/Makefile.am b/eo/Makefile.am index 6d28ae14..4b7941a2 100644 --- a/eo/Makefile.am +++ b/eo/Makefile.am @@ -14,13 +14,22 @@ EXTRA_DIST=LICENSE ############################################################################### +lib: + pushd src; $(MAKE) all; popd + +test: + pushd test; $(MAKE) all; popd + +doc: + pushd doc; $(MAKE) doc; popd + +app: + pushd app; $(MAKE) all; popd + all: for i in $(SUBDIRS); do pushd $$i && $(MAKE) all; popd; done clean: for i in $(SUBDIRS); do pushd $$i && $(MAKE) clean; popd; done -doc: - pushd doc; $(MAKE) doc; popd - ############################################################################### \ No newline at end of file