Merge branch 'build-on-amigados-1.3' of https://github.com/catseye/Pixley into develop-2018-1
Chris Pressey
7 years ago
0 | ; | |
1 | ; To build the 'mignon' executable using DICE C, | |
2 | ; under AmigaDOS 1.3, you can either run | |
3 | ; | |
4 | ; protect build.seq srwd | |
5 | ; build.seq | |
6 | ; | |
7 | ; or you can simply type the following commands into the shell: | |
8 | ; | |
9 | dcc -c sexp.c -o sexp.o | |
10 | dcc -c parse.c -o parse.o | |
11 | dcc -c eval.c -o eval.o | |
12 | dcc -c main.c -o main.o | |
13 | dcc sexp.o parse.o eval.o main.o -o mignon |