blob: 901f87957119c064cb675125cc3e3e1efdb6664c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
?tacl macro
#frame
#push zipfile
#SET zipfile ZIP23
unzip -a [zipfile] *.c -x */*
== Following not required
RENAME apic apicz
RENAME mktimec mktimecz == use Tandem mktime()
unzip -a [zipfile] *.h -x */*
== Following not required
RENAME apih apizh
unzip -aj [zipfile] tandem/*.h
unzip -aj [zipfile] tandem/*.c
unzip -aj [zipfile] tandem/* -x tandem/*.*
#unframe
|