Skip to content

Commit 7a92d03

Browse files
committed
and this is why we don't cleanup without testing
1 parent 9f34a77 commit 7a92d03

File tree

4 files changed

+10
-9
lines changed

4 files changed

+10
-9
lines changed

MAIN.C

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1+
#include <stdlib.h>
12
#include <stddef.h>
3+
#include <string.h>
24
#include <pc.h>
35
#include "P98.H"
46
#include "PEGC.H"

MAKEFILE

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,14 @@ $(TARGET): $(OBJS)
99
$(CC) $(OBJS) -o $(TARGET)
1010

1111
MAIN.O: MAIN.C
12-
$(CC) -c MAIN.C -o MAIN.O
12+
$(CC) -x c -c MAIN.C -o MAIN.O
1313
DATUM.O: DATUM.C
14-
$(CC) -c DATUM.C -o DATUM.O
14+
$(CC) -x c -c DATUM.C -o DATUM.O
1515
P98.O: P98.C:
16-
$(CC) -c P98.C -o P98.O
16+
$(CC) -x c -c P98.C -o P98.O
1717

1818
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

P98.C

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
#include <stdio.h>
22
#include <limits.h>
3-
#include <string.h>
43
#include <dos.h>
54
#include <sys/farptr.h>
65
#include <sys/movedata.h>

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ You can find a pre-made DJGPP dev environment [here](https://www.target-earth.ne
1010
make
1111
```
1212

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`.
1414

1515
## Performance
1616

0 commit comments

Comments
 (0)