File: Makefile.in

package info (click to toggle)
rplay 3.3.2-2
  • links: PTS
  • area: main
  • in suites: potato
  • size: 3,208 kB
  • ctags: 3,536
  • sloc: ansic: 42,124; makefile: 1,309; perl: 742; tcl: 345; sh: 301; java: 220
file content (57 lines) | stat: -rw-r--r-- 1,179 bytes parent folder | download | duplicates (12)
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;