More changes to top-level makefile and configuration files.

git-svn-id: file:///fltk/svn/fltk/trunk@27 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
This commit is contained in:
Michael R Sweet
1998-10-21 14:00:53 +00:00
parent 0f60ac9155
commit d3dee719fb
4 changed files with 32 additions and 23 deletions
+14 -5
View File
@@ -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 $".
#