new application gprop

This commit is contained in:
gustavoromero 2000-11-23 19:14:09 +00:00
commit 8527bd8378
9 changed files with 1405 additions and 0 deletions

17
eo/app/Makefile.am Normal file
View file

@ -0,0 +1,17 @@
###############################################################################
##
## Makefile.am for app
##
###############################################################################
SUBDIRS = gprop
###############################################################################
all:
for i in $(SUBDIRS); do pushd $$i && $(MAKE) all; popd; done
clean:
for i in $(SUBDIRS); do pushd $$i && $(MAKE) clean; popd; done
###############################################################################