Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
N
node-sass
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
楚学文
node-sass
Commits
60ee17bc
Commit
60ee17bc
authored
Apr 12, 2012
by
Aaron Leung
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Updating things so I can run the tests again.
parent
20dbe3a8
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
9 deletions
+4
-9
Makefile
Makefile
+2
-2
sassc.c
sassc.c
+2
-7
No files found.
Makefile
View file @
60ee17bc
...
@@ -15,10 +15,10 @@ libsass: sass_interface.o context.o functions.o document.o document_parser.o eva
...
@@ -15,10 +15,10 @@ libsass: sass_interface.o context.o functions.o document.o document_parser.o eva
libsass_objs
:
sass_interface.cpp context.cpp functions.cpp document.cpp document_parser.cpp eval_apply.cpp node.cpp node_comparisons.cpp values.cpp prelexer.cpp
libsass_objs
:
sass_interface.cpp context.cpp functions.cpp document.cpp document_parser.cpp eval_apply.cpp node.cpp node_comparisons.cpp values.cpp prelexer.cpp
g++
-c
sass_interface.cpp context.cpp functions.cpp document.cpp document_parser.cpp eval_apply.cpp node.cpp node_comparisons.cpp values.cpp prelexer.cpp
g++
-c
sass_interface.cpp context.cpp functions.cpp document.cpp document_parser.cpp eval_apply.cpp node.cpp node_comparisons.cpp values.cpp prelexer.cpp
test
:
build
test
:
sassc
ruby spec.rb spec/basic/
ruby spec.rb spec/basic/
test_all
:
build
test_all
:
sassc
ruby spec.rb spec/
ruby spec.rb spec/
clean
:
clean
:
...
...
sassc.c
View file @
60ee17bc
...
@@ -21,10 +21,7 @@
...
@@ -21,10 +21,7 @@
#include "sass_interface.h"
#include "sass_interface.h"
int
main
(
int
argc
,
char
**
argv
)
int
main
(
int
argc
,
char
**
argv
)
{
{
// blah, nothing yet
printf
(
"Hey, does this work?
\n
"
);
if
(
argc
<
2
)
{
if
(
argc
<
2
)
{
printf
(
"Hey, I need an input file!
\n
"
);
printf
(
"Hey, I need an input file!
\n
"
);
return
0
;
return
0
;
...
@@ -37,9 +34,7 @@ int main(int argc, char** argv)
...
@@ -37,9 +34,7 @@ int main(int argc, char** argv)
ctx
->
output_style
=
0
;
ctx
->
output_style
=
0
;
ctx
->
input_file
=
argv
[
1
];
ctx
->
input_file
=
argv
[
1
];
ctx
->
input_string
=
NULL
;
ctx
->
input_string
=
NULL
;
printf
(
"Still working?
\n
"
);
char
*
output
=
sass_compile
(
ctx
);
char
*
output
=
sass_compile
(
ctx
);
printf
(
"%s"
,
output
);
printf
(
"%s"
,
output
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment