aboutsummaryrefslogtreecommitdiff
path: root/tools/Makefile
blob: 200db454d814918e7b24ed44d797f7d96a6a8d25 (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
49
50
51
52
53
54
55
56
57
58
59
60
#*=====================================================================*/
#*    serrano/prgm/project/skribe/tools/Makefile                       */
#*    -------------------------------------------------------------    */
#*    Author      :  Manuel Serrano                                    */
#*    Creation    :  Wed Jul 30 16:23:07 2003                          */
#*    Last change :  Tue Oct 26 19:36:26 2004 (eg)                */
#*    Copyright   :  2003-04 Manuel Serrano                            */
#*    -------------------------------------------------------------    */
#*    The Skribe Tools general makefile                                */
#*=====================================================================*/
include ../etc/Makefile.config

TOOLS= skribebibtex

#*---------------------------------------------------------------------*/
#*    all                                                              */
#*---------------------------------------------------------------------*/
.PHONY: all

all:
	for p in $(TOOLS); do \
	  (cd $$p/$(SYSTEM) && $(MAKE)) || exit -1; \
        done

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

pop: 
	@ for p in $(TOOLS); do \
	  (cd $$p/bigloo && $(MAKE) pop); \
	  (cd $$p/stklos && $(MAKE) pop); \
        done
	@ echo tools/Makefile

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

install: 
	@ for p in $(TOOLS); do \
	  (cd $$p/$(SYSTEM) && $(MAKE) install) || exit -1; \
        done
uninstall: 
	@ for p in $(TOOLS); do \
	  (cd $$p/$(SYSTEM) && $(MAKE) uninstall) || exit -1; \
        done

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

clean:
	for p in $(TOOLS); do \
	  (cd $$p/$(SYSTEM) && $(MAKE) clean); \
        done