mirror of
https://github.com/Interlisp/maiko.git
synced 2026-01-14 15:36:34 +00:00
For all systems other than DOS, use a simple shell script to create the vdate.c (contains version date) that goes into every build.
6 lines
70 B
Bash
Executable File
6 lines
70 B
Bash
Executable File
#!/bin/sh
|
|
cat <<EOF
|
|
#include <time.h>
|
|
time_t MDate = $(date +%s);
|
|
EOF
|