diff options
author | johnvg | 2003-10-06 14:21:22 +0000 |
---|---|---|
committer | johnvg | 2003-10-06 14:21:22 +0000 |
commit | 3d6b00e48b3ea51e39a8be6910eac34b6c34209d (patch) | |
tree | 10043770498aca28af3895d4720b09593f6c6c2c /unix | |
parent | use pattern_match_2.c instead of pattern_match.c (diff) |
fix ArgEnvUnix path and compiler (now frontend) path
git-svn-id: https://svn.cs.ru.nl/repos/clean-compiler/trunk@1382 1f8540f1-abd5-4d5b-9d24-4c5ce8603e2d
Diffstat (limited to 'unix')
-rwxr-xr-x | unix/make.solaris.sh | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/unix/make.solaris.sh b/unix/make.solaris.sh index fe08c8f..94712b1 100755 --- a/unix/make.solaris.sh +++ b/unix/make.solaris.sh @@ -2,10 +2,11 @@ CLM=clm (cd backendC/CleanCompilerSources; make) -(cd ArgEnvUnix; make ArgEnvC.o) -(cd main/Unix; make -f Makefile.solaris all); -$CLM -h 16M -nt -nw -ci -ns -nr -I ArgEnvUnix -I backend -I compiler -I main -I main/Unix -I WrapDebug \ - -l ArgEnvUnix/ArgEnvC.o \ +(cd ../libraries/ArgEnvUnix; make ArgEnvC.o) +(cd main/Unix; make -f Makefile all); +$CLM -h 16M -nt -nw -ci -ns -nr -I backend -I frontend -I main -I main/Unix \ + -I ../libraries/ArgEnvUnix \ + -l ../libraries/ArgEnvUnix/ArgEnvC.o \ -l main/Unix/cDirectory.o \ -l main/Unix/set_return_code_c.o \ -l main/Unix/ipc.o \ |