adding targets

This commit is contained in:
gustavoromero 2000-11-07 13:02:48 +00:00
commit e1d391d1ab

View file

@ -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
###############################################################################