l4alpha-cvscommit Mailing List for L4/Alpha (Page 5)
Status: Beta
Brought to you by:
dpotts
You can subscribe to this list here.
| 2001 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(9) |
Dec
(7) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2002 |
Jan
(24) |
Feb
(30) |
Mar
|
Apr
(1) |
May
|
Jun
(8) |
Jul
|
Aug
|
Sep
(14) |
Oct
(3) |
Nov
|
Dec
(4) |
| 2003 |
Jan
(2) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
|
From: Daniel P. <dp...@us...> - 2001-11-12 05:16:45
|
Update of /cvsroot/l4alpha/L4Alpha-tools/mapcvt
In directory usw-pr-cvs1:/tmp/cvs-serv10680/mapcvt
Modified Files:
mapcvt.c
Log Message:
Added fixes from brett's tree for more friendly compiles. His comment is as follows:
Added an install target.
Also fixed standard ('all') target so you can actually type make more then once withit working.
Removed references to Simons and Dans home directories.
Changed C flags so it will compile using gcc (note the code uses a variable called 'inline' so its not going to compile on most compilers).
Index: mapcvt.c
===================================================================
RCS file: /cvsroot/l4alpha/L4Alpha-tools/mapcvt/mapcvt.c,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** mapcvt.c 2000/11/27 04:22:12 1.1
--- mapcvt.c 2001/11/12 05:16:39 1.2
***************
*** 3,6 ****
--- 3,11 ----
#include <ctype.h>
+ #ifndef FALSE
+ #define FALSE 0
+ #define TRUE 1
+ #endif
+
typedef enum _CONVERT_MODE {
normal = 0,
|
|
From: Daniel P. <dp...@us...> - 2001-11-12 05:16:44
|
Update of /cvsroot/l4alpha/L4Alpha-tools
In directory usw-pr-cvs1:/tmp/cvs-serv10680
Modified Files:
Makefile
Log Message:
Added fixes from brett's tree for more friendly compiles. His comment is as follows:
Added an install target.
Also fixed standard ('all') target so you can actually type make more then once withit working.
Removed references to Simons and Dans home directories.
Changed C flags so it will compile using gcc (note the code uses a variable called 'inline' so its not going to compile on most compilers).
Index: Makefile
===================================================================
RCS file: /cvsroot/l4alpha/L4Alpha-tools/Makefile,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** Makefile 2000/11/27 04:22:12 1.2
--- Makefile 2001/11/12 05:16:39 1.3
***************
*** 2,11 ****
# Basic Makefile for tools...
#
- # 000314
#
all:
- rm -rf bin
- mkdir bin
make -C hal
make -C hal-ev5
--- 2,10 ----
# Basic Makefile for tools...
#
#
+ TOOL_PATH:=bin
+
all:
make -C hal
make -C hal-ev5
***************
*** 13,16 ****
--- 12,20 ----
make -C mapcvt
# make install -C sysgen
+
+ install: all
+ cp hal/hal $(TOOL_PATH)/hal
+ cp hal-ev5/hal $(TOOL_PATH)/hal-ev5
+ cp mapcvt/mapcvt $(TOOL_PATH)/mapcvt
clean:
|