-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathMakefile
More file actions
34 lines (29 loc) · 833 Bytes
/
Makefile
File metadata and controls
34 lines (29 loc) · 833 Bytes
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
# Mode: -*- MAKEFILE -*-
# @BC
# Copyright (c) 1996
# by Rosette WebWorks Inc.
# All Rights Reserved
#
# Permission to use, copy, modify, and distribute this software and its
# documentation for any purpose and without fee is hereby granted,
# provided that this notice be retained unaltered, and that the name of
# RWI shall not be used in advertising or publicity pertaining to
# distribution of the software without specific written prior permission.
#
# THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
# IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
#
#
# $Header$
#
# $Log$
#
# @EC
all:
$(MAKE) -C src
$(MAKE) -C rbl
clean:
rm -f src/*.o
rm -f bin/boot-ess
.PHONY: all clean