ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/ermyth/modules/Makefile.in
Revision: 1.2
Committed: Sat Jul 21 01:29:08 2007 UTC (16 years, 10 months ago) by pippijn
Branch: MAIN
Changes since 1.1: +2 -2 lines
Log Message:
- moved to new documentation system
- fixed small build error

File Contents

# User Rev Content
1 pippijn 1.1 # Copyright © 2003-2004 E. Will et al.
2 pippijn 1.2 # Rights to this code are documented in doc/pod/license.pod.
3 pippijn 1.1 #
4     # This file contains build instructions.
5     #
6 pippijn 1.2 # $Id: Makefile.in,v 1.1 2007-07-19 08:24:52 pippijn Exp $
7 pippijn 1.1 #
8     include Makefile.defs
9    
10     default: all
11    
12     SUBDIRS = backend chanserv contrib crypto gameserv global memoserv misc nickserv operserv protocol rpc saslserv
13    
14     all: build
15    
16     .build.stamp:
17     @${MAKE} ${SILENT} build
18     @touch .build.stamp
19    
20     install: .build.stamp
21     @for i in $(SUBDIRS); do \
22     echo "[$@] ==> - $$i"; \
23     ${MAKE} ${SILENT} -C $$i $@ || exit; \
24     done
25     -${RM} -f $(DESTDIR)${MODDIR}/modules/userserv/main.so
26    
27     build:
28     @for i in $(SUBDIRS); do \
29     echo "[$@] ==> - $$i"; \
30     ${MAKE} ${SILENT} -C $$i $@ || exit; \
31     done
32    
33     .PHONY: depend clean distclean
34    
35     depend:
36     @for i in $(SUBDIRS); do \
37     echo "[$@] ==> - $$i"; \
38     touch $$i/.depend; \
39     ${MAKE} ${SILENT} -C $$i $@; \
40     done
41    
42     clean:
43     @for i in $(SUBDIRS); do \
44     echo "[$@] ==> - $$i"; \
45     ${MAKE} ${SILENT} -C $$i $@ || exit; \
46     done
47     @${RM} -f .build.stamp
48    
49     distclean:
50     @for i in $(SUBDIRS); do \
51     echo "[$@] ==> - $$i"; \
52     ${MAKE} ${SILENT} -C $$i $@ || exit; \
53     done
54     @${RM} -f Makefile Makefile.defs Makefile.common .depend
55    
56     maintainer-clean:
57     @for i in $(SUBDIRS); do \
58     echo "[$@] ==> - $$i"; \
59     ${MAKE} ${SILENT} -C $$i $@ || exit; \
60     done
61     @${RM} -f Makefile Makefile.defs Makefile.common .depend