adding targets
This commit is contained in:
parent
594a8e146f
commit
e1d391d1ab
1 changed files with 12 additions and 3 deletions
|
|
@ -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
|
||||
|
||||
###############################################################################
|
||||
Reference in a new issue