-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile.in
57 lines (45 loc) · 1.15 KB
/
Makefile.in
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
include @RPLAY_TOP@/Makefile.config
INSTALL = @INSTALL@
INSTALL_PROGRAM = @INSTALL_PROGRAM@
INSTALL_DATA = @INSTALL_DATA@
MKINSTALLDIRS = @srcdir@/mkinstalldirs
TARGET= @BUILD_TARGETS@
all:
@for i in $(TARGET); \
do \
(echo make all in $$i...; cd $$i; $(MAKE) $(MFLAGS) all); \
done;
world: all install
install:
@for i in $(TARGET); \
do \
(echo make install in $$i...; cd $$i; $(MAKE) $(MFLAGS) install); \
done;
uninstall:
@for i in $(TARGET); \
do \
(echo make uninstall in $$i...; cd $$i; $(MAKE) $(MFLAGS) uninstall); \
done;
clean:
@for i in $(TARGET); \
do \
(echo make clean in $$i...; cd $$i; $(MAKE) $(MFLAGS) clean); \
done;
distclean:
@for i in $(TARGET); \
do \
(echo make distclean in $$i...; cd $$i; $(MAKE) $(MFLAGS) distclean); \
done;
$(RM) Makefile Makefile.config config.status config.cache config.log *~ *.bak *.orig stamp-configure stamp-build
tags:
@for i in $(TARGET); \
do \
(echo make tags in $$i...; cd $$i; $(MAKE) $(MFLAGS) tags); \
done;
TAGS: tags
etags: tags
depend:
@for i in $(TARGET); \
do \
(echo make depend in $$i...; cd $$i; $(MAKE) $(MFLAGS) depend); \
done;