Revision 24319,
1.1 KB
checked in by broder, 15 years ago
(diff) |
New Moira snapshot from SVN.
|
Line | |
---|
1 | # $Id: Makefile.in 3956 2010-01-05 20:56:56Z zacheiss $ |
---|
2 | |
---|
3 | SHELL=/bin/sh |
---|
4 | @SET_MAKE@ |
---|
5 | |
---|
6 | CC=@CC@ |
---|
7 | CPPFLAGS=@CPPFLAGS@ |
---|
8 | CFLAGS=@CFLAGS@ |
---|
9 | DEFS=@DEFS@ |
---|
10 | ALL_CFLAGS=$(CPPFLAGS) $(CFLAGS) $(DEFS) |
---|
11 | LDFLAGS=@LDFLAGS@ |
---|
12 | LIBS=@LIBS@ |
---|
13 | INSTALL=@INSTALL@ |
---|
14 | INSTALL_PROGRAM=@INSTALL_PROGRAM@ |
---|
15 | |
---|
16 | srcdir=@srcdir@ |
---|
17 | VPATH=@srcdir@ |
---|
18 | SRCTOP=@top_srcdir@ |
---|
19 | BUILDTOP=.. |
---|
20 | mrbindir=@mrbindir@ |
---|
21 | |
---|
22 | SUBDIRS=@AFS_SUBDIRS@ @WINAD_SUBDIRS@ |
---|
23 | |
---|
24 | .SUFFIXES: .pc |
---|
25 | |
---|
26 | .pc.c: |
---|
27 | $(PRO_C) $(PRO_C_FLAGS) INAME=$< |
---|
28 | |
---|
29 | .c.o: |
---|
30 | $(CC) -c $(ALL_CFLAGS) $< |
---|
31 | |
---|
32 | all: |
---|
33 | @for d in $(SUBDIRS); do (echo "### Making $@ in incremental/$$d"; cd $$d; $(MAKE) $@) || exit 1; done |
---|
34 | |
---|
35 | clean: |
---|
36 | rm -f $(KSRVTGT_OBJS) $(TARGET) |
---|
37 | @for d in $(SUBDIRS); do (echo "### Making $@ in incremental/$$d"; cd $$d; $(MAKE) $@) || exit 1; done |
---|
38 | |
---|
39 | cleandir distclean: |
---|
40 | rm -f Makefile $(KSRVTGT_OBJS) $(TARGET) |
---|
41 | @for d in $(SUBDIRS); do (echo "### Making $@ in incremental/$$d"; cd $$d; $(MAKE) $@) || exit 1; done |
---|
42 | |
---|
43 | depend: |
---|
44 | @for d in $(SUBDIRS); do (echo "### Making $@ in incremental/$$d"; cd $$d; $(MAKE) $@) || exit 1; done |
---|
45 | |
---|
46 | install: |
---|
47 | @for d in $(SUBDIRS); do (echo "### Making $@ in incremental/$$d"; cd $$d; $(MAKE) $@) || exit 1; done |
---|
Note: See
TracBrowser
for help on using the repository browser.