blob: 0f5cb0af5b604c1c2610bafe146be71d0d88c810 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
#!/bin/sh
CLM=clm
(cd backendC/CleanCompilerSources; make -f Makefile.arm)
(cd ../libraries/ArgEnvUnix; make -f Makefile_arm ArgEnvC.o)
(cd main/Unix; make -f Makefile.arm all);
$CLM -ci -I backend -I frontend -I main -I main/Unix -ABC -fusion backendconvert
$CLM -h 24M -nt -nw -ci -ns -nr -I backend -I frontend -I main -I main/Unix \
-I ../libraries/ArgEnvUnix \
-l backendC/CleanCompilerSources/backend.a \
cocl -o cocl
|