]> git.sur5r.net Git - openldap/blob - build/platforms/Makefile
38f3194d6359780f63ad45aa689a3785fd87e532
[openldap] / build / platforms / Makefile
1 #-----------------------------------------------------------------------------
2 # Copyright (c) 1994 Regents of the University of Michigan.
3 # All rights reserved.
4 #
5 # Redistribution and use in source and binary forms are permitted
6 # provided that this notice is preserved and that due credit is given
7 # to the University of Michigan at Ann Arbor. The name of the University
8 # may not be used to endorse or promote products derived from this
9 # software without specific prior written permission. This software
10 # is provided ``as is'' without express or implied warranty.
11 #
12 #       LDAP build/platforms Makefile
13 #
14 #-----------------------------------------------------------------------------
15
16 ############################################################################
17 #                                                                          #
18 # You should not have to edit anything below this point                    #
19 #                                                                          #
20 ############################################################################
21
22 all:    FORCE
23
24
25 install:        FORCE
26
27 clean:  FORCE
28         @echo "making clean in `pwd`"
29         @for i in *; do \
30             if [ -d $$i -a $$i != "RCS" ]; then \
31                 echo; echo "  cd $$i; $(MAKE) $(MFLAGS) clean"; \
32                 ( cd $$i; $(MAKE) $(MFLAGS) clean ); \
33             fi; \
34         done
35
36 veryclean:      FORCE
37         @echo "making veryclean in `pwd`"
38         @for i in *; do \
39             if [ -d $$i -a $$i != "RCS" ]; then \
40                 echo; echo "  cd $$i; $(MAKE) $(MFLAGS) veryclean"; \
41                 ( cd $$i; $(MAKE) $(MFLAGS) veryclean ); \
42             fi; \
43         done
44
45 FORCE:
46