Differences From Artifact [076c585a54]:
- Executable file compile — part of check-in [3f12058d2d] at 2018-10-07 04:25:13 on branch trunk — Make some improvements to compile script, and start edit.c (just a stub so far) (user: user, size: 1217) [annotate] [blame] [check-ins using]
To Artifact [9cfb5e24a6]:
- Executable file compile — part of check-in [9d982f0655] at 2020-10-20 23:21:48 on branch trunk — Add game.c file (not implemented much) (user: user, size: 1276) [annotate] [blame] [check-ins using]
1 2 3 | 1 2 3 4 5 6 7 8 9 10 11 | - + | #!/bin/bash -- set -e test -f CFLAGS || echo xxx > CFLAGS |
︙ | |||
21 22 23 24 25 26 27 28 29 30 31 32 | 21 22 23 24 25 26 27 28 29 30 31 32 33 34 | + + | test class.c -nt class.o && bash class.c echo '* function' test function.c -nt function.o && bash function.c echo '* picture' test picture.c -nt picture.o && bash picture.c echo '* exec' test exec.c -nt exec.o && bash exec.c echo '* game' test game.c -nt game.o && bash game.c echo '* edit' test edit.c -nt edit.o && bash edit.c echo '* main' bash main.c echo 'DONE' |