diff options
| author | Michael R Sweet <michael.r.sweet@gmail.com> | 1998-10-21 14:00:53 +0000 |
|---|---|---|
| committer | Michael R Sweet <michael.r.sweet@gmail.com> | 1998-10-21 14:00:53 +0000 |
| commit | d3dee719fbaaa0b64d15ad7397e549d2e4ee7d6f (patch) | |
| tree | a6c6c76374f868f8c3f1c67f4aea0b3494441137 /Makefile | |
| parent | 0f60ac9155a721085315389b65c73380e001249f (diff) | |
More changes to top-level makefile and configuration files.
git-svn-id: file:///fltk/svn/fltk/trunk@27 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 19 |
1 files changed, 14 insertions, 5 deletions
@@ -27,25 +27,34 @@ SHELL=/bin/sh DIRS = src fluid test -all: +all: depend for dir in $(DIRS); do\ echo "=== making $$dir ===";\ - cd $$dir && $(MAKE);\ + (cd $$dir;$(MAKE));\ done install: all for dir in $(DIRS); do\ echo "=== installing $$dir ===";\ - cd $$dir && $(MAKE) install;\ + (cd $$dir;$(MAKE) install);\ + done + +depend: + for dir in $(DIRS); do\ + echo "=== making dependencies in $$dir ===";\ + if test ! -f $$dir/makedepend; then\ + touch 0101000070 $$dir/makedepend;\ + fi;\ + (cd $$dir;$(MAKE) depend);\ done clean: -@ rm -f core config.cache *.o *.bck for dir in $(DIRS); do\ echo "=== cleaning $$dir ===";\ - cd $$dir && $(MAKE) clean;\ + (cd $$dir;$(MAKE) clean);\ done # -# End of "$Id: Makefile,v 1.2 1998/10/20 21:06:17 mike Exp $". +# End of "$Id: Makefile,v 1.3 1998/10/21 14:00:51 mike Exp $". # |
