60 |
include=INCLUDE |
include=INCLUDE |
61 |
if -1!=include.find(" "): |
if -1!=include.find(" "): |
62 |
print "-I\""+include+"\"" |
print "-I\""+include+"\"" |
63 |
else: |
elif len(include): |
64 |
print "-I"+include |
print "-I"+include |
65 |
ok = True |
ok = True |
66 |
|
|
71 |
if -1!=libs.find(" "): |
if -1!=libs.find(" "): |
72 |
print "-L\""+libs+"\" -lascend" |
print "-L\""+libs+"\" -lascend" |
73 |
else: |
else: |
74 |
print "-L"+libs+" -lascend" |
Lflag = "" |
75 |
|
if len(libs): |
76 |
|
Lflag = "-L"+libs+" " |
77 |
|
print Lflag + "-lascend" |
78 |
ok = True |
ok = True |
79 |
|
|
80 |
if options.data: |
if options.data: |