Public » Miscellaneous » MegaHAL
Clone URL:  
Pushed to one repository · View In Graph Contained in tip

MegaHAL compiles again

Changeset 1fb99fb51c4d

Parent 7a9cef943287

by Profile picture of Benjamin PollackBenjamin Pollack

Changes to 3 files · Browse files at 1fb99fb51c4d Showing diff from parent 7a9cef943287 Diff from another changeset...

Change 1 of 1 Show Entire File Makefile Stacked
 
25
26
27
28
 
29
30
31
 
25
26
27
 
28
29
30
31
@@ -25,7 +25,7 @@
 all: megahal tcllib pythonmodule perlmodule    megahal: main.o megahal.o megahal.h backup - gcc $(CFLAGS) -o megahal megahal.o main.o -lm $(DEBUG) + gcc $(CFLAGS) -o megahal-bin megahal.o main.o -lm $(DEBUG)   @echo "MegaHAL is up to date"    megahal.o: megahal.c megahal.h
Change 1 of 1 Show Entire File main.c Stacked
 
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
 
3
4
5
 
 
 
6
7
8
9
10
 
 
 
 
11
 
12
13
14
@@ -3,20 +3,12 @@
 #include <stdarg.h>  #include <unistd.h>  #include <getopt.h> -#if !defined(AMIGA) && !defined(__mac_os) -#include <malloc.h> -#endif  #include <string.h>  #include <signal.h>  #include <math.h>  #include <time.h>  #include <ctype.h> -#if defined(__mac_os) -#include <types.h> -#include <Speech.h> -#else  #include <sys/types.h> -#endif  #include "megahal.h"  #if defined(DEBUG)  #include "debug.h"
Change 1 of 1 Show Entire File megahal.c Stacked
 
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
 
103
104
105
 
 
 
106
107
108
109
110
 
 
 
 
111
 
112
113
114
@@ -103,20 +103,12 @@
 #include <stdarg.h>  #include <unistd.h>  #include <getopt.h> -#if !defined(AMIGA) && !defined(__mac_os) -#include <malloc.h> -#endif  #include <string.h>  #include <signal.h>  #include <math.h>  #include <time.h>  #include <ctype.h> -#if defined(__mac_os) -#include <types.h> -#include <Speech.h> -#else  #include <sys/types.h> -#endif  #include "megahal.h"  #if defined(DEBUG)  #include "debug.h"