aboutsummaryrefslogtreecommitdiff
path: root/examples/Makefile
blob: 7f47f6e2c69968504ffb267e112bb3357f1866e1 (plain)
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
#*=====================================================================*/
#*    serrano/prgm/project/skribe/examples/Makefile                    */
#*    -------------------------------------------------------------    */
#*    Author      :  Manuel Serrano                                    */
#*    Creation    :  Fri Oct 24 13:25:43 2003                          */
#*    Last change :  Wed Feb 18 11:25:20 2004 (serrano)                */
#*    Copyright   :  2003-04 Manuel Serrano                            */
#*    -------------------------------------------------------------    */
#*    The meta Makefile for the examples                               */
#*=====================================================================*/

#*---------------------------------------------------------------------*/
#*    All the examples                                                 */
#*---------------------------------------------------------------------*/
EXAMPLES=slide

#*---------------------------------------------------------------------*/
#*    pop                                                              */
#*---------------------------------------------------------------------*/
.PHONY: pop

pop:
	@ for p in $(EXAMPLES); do \
          (cd $$p && $(MAKE) pop); \
        done
	@ echo examples/Makefile

#*---------------------------------------------------------------------*/
#*    Install/Uinstall                                                 */
#*---------------------------------------------------------------------*/
.PHONY: install uninstall

install:

uninstall:

#*---------------------------------------------------------------------*/
#*    cleaning                                                         */
#*---------------------------------------------------------------------*/
.PHONY: clean distclean

clean:
	for p in $(EXAMPLES); do \
          (cd $$p && $(MAKE) clean); \
        done

distclean: clean