blob: 51ab7dc3c8003384bcec38e297093706c7ad6d65 (
plain) (
blame)
1
2
3
4
5
6
7
8
|
#!/bin/sh
CLM=clm
(cd backendC/CleanCompilerSources; make -f Makefile.linux64)
(cd main/Unix; make -f Makefile all);
$CLM -gcm -h 40M -nt -nw -ci -nr -IL ArgEnv -I backend -I frontend -I main -I main/Unix \
-l backendC/CleanCompilerSources/backend.a \
cocl -o cocl
|