[L4alpha-cvscommit] CVS: L4Alpha-tools/mapcvt mapcvt.c,1.1,1.2
Status: Beta
Brought to you by:
dpotts
|
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,
|