-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile.in
More file actions
37 lines (31 loc) · 755 Bytes
/
Makefile.in
File metadata and controls
37 lines (31 loc) · 755 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
include @top_srcdir@/Make.flags
all: dep
for x in `find . -name Makefile`; do \
F=`echo $$x|sed 's/Makefile$$//g'`; \
if (test $$F != './'); then \
(cd $$F;make); \
fi;\
done;
dep:
for x in `find . -name 'Makefile'`; do \
F=`echo $$x|sed 's/Makefile$$//g'`; \
echo "Dependencies in directory: $$F";\
if (test $$F != "./"); then\
(cd $$F;make dep;);\
fi;\
done;
clean:
for x in `find . -name 'Makefile'`; do \
F=`echo $$x|sed 's/Makefile$$//g'`; \
(cd $$F; rm -f *.o .depend); \
done;
rm -f config.*
install:
for x in `find . -name 'Makefile'`; do \
F=`echo $$x|sed 's/Makefile$$//g'`; \
if ( test $$F != "./" ); then\
if ( grep -e "^install\:" $$x ); then \
(cd $$F; make install); \
fi \
fi\
done;