File tree Expand file tree Collapse file tree 4 files changed +10
-9
lines changed Expand file tree Collapse file tree 4 files changed +10
-9
lines changed Original file line number Diff line number Diff line change
1
+ #include <stdlib.h>
1
2
#include <stddef.h>
3
+ #include <string.h>
2
4
#include <pc.h>
3
5
#include "P98.H"
4
6
#include "PEGC.H"
Original file line number Diff line number Diff line change @@ -9,14 +9,14 @@ $(TARGET): $(OBJS)
9
9
$(CC) $(OBJS) -o $(TARGET)
10
10
11
11
MAIN.O: MAIN.C
12
- $(CC) -c MAIN.C -o MAIN.O
12
+ $(CC) -x c - c MAIN.C -o MAIN.O
13
13
DATUM.O: DATUM.C
14
- $(CC) -c DATUM.C -o DATUM.O
14
+ $(CC) -x c - c DATUM.C -o DATUM.O
15
15
P98.O: P98.C:
16
- $(CC) -c P98.C -o P98.O
16
+ $(CC) -x c - c P98.C -o P98.O
17
17
18
18
clean:
19
- DEL MAIN.O
20
- DEL DATUM.O
21
- DEL P98.O
22
- DEL KOARMADA.EXE
19
+ del main.o
20
+ del datum.o
21
+ del p98.o
22
+ del koarmada.exe
Original file line number Diff line number Diff line change 1
1
#include <stdio.h>
2
2
#include <limits.h>
3
- #include <string.h>
4
3
#include <dos.h>
5
4
#include <sys/farptr.h>
6
5
#include <sys/movedata.h>
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ You can find a pre-made DJGPP dev environment [here](https://www.target-earth.ne
10
10
make
11
11
```
12
12
13
- That's it.
13
+ That's it. You'll need to change the first line of the Makefile if DJGPP isn't installed to ` A:¥PROGS¥DJGPP ` .
14
14
15
15
## Performance
16
16
You can’t perform that action at this time.
0 commit comments