blob: 09e96d51d570b306812a6fd418f4c16c781a86d9 (
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
|
#*=====================================================================*/
#* serrano/prgm/project/skribe/src/Makefile */
#* ------------------------------------------------------------- */
#* Author : Manuel Serrano */
#* Creation : Sat Oct 25 08:15:57 2003 */
#* Last change : Mon Jan 5 09:55:27 2004 (serrano) */
#* Copyright : 2003-04 Manuel Serrano */
#* ------------------------------------------------------------- */
#* The meta Makefile for the sources */
#*=====================================================================*/
include ../etc/Makefile.config
#*---------------------------------------------------------------------*/
#* pop */
#*---------------------------------------------------------------------*/
.PHONY: pop
pop:
@ echo src/Makefile
@ (cd bigloo && $(MAKE) pop)
@ (cd stklos && $(MAKE) pop)
#*---------------------------------------------------------------------*/
#* Install/Uinstall */
#*---------------------------------------------------------------------*/
.PHONY: install uninstall
install:
(cd $(SYSTEM) && $(MAKE) install)
uninstall:
(cd $(SYSTEM) && $(MAKE) uninstall)
#*---------------------------------------------------------------------*/
#* clean */
#*---------------------------------------------------------------------*/
.PHONY: clean
clean:
(cd $(SYSTEM) && $(MAKE) clean)
|