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
a8066e91
Commit
a8066e91
authored
Feb 22, 2012
by
Hampton Catlin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
FIRST BUILD
parent
775f9047
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
16 additions
and
11 deletions
+16
-11
.gitignore
.gitignore
+1
-0
Makefile
Makefile
+11
-8
libsass.c
libsass.c
+3
-2
libsass.h
libsass.h
+1
-1
No files found.
.gitignore
View file @
a8066e91
sassc
build/*
build/*
*.o
*.o
a.out
a.out
...
...
Makefile
View file @
a8066e91
CC
=
gcc
CC
=
gcc
CFLAGS
=
-I
.
CFLAGS
=
-I
.
SRC
=
src/
%.o
:
%.c
sassc
:
sassc.o
$(CC)
$(CFLAGS)
-c
$<
-o
build/
$@
$(CC)
-o
$(BIN)
sassc sassc.o libsass.o
sassc
:
sassc.o
$(CC)
-o
$(BIN)
sassc src/sassc.o
sassc.o
:
libsass.o
sassc.o
:
libsass.o
$(CC)
-c
-g
$(SRC)
sassc.c
libsass.o
:
bstr
libsass.o
:
\ No newline at end of file
bstr
:
bstr/bsafe.o
bstr/bsafe.o
:
clean
:
rm
-rf
*
.o
rm
-rf
sassc
\ No newline at end of file
libsass.c
View file @
a8066e91
#include "libsass.h"
#include "libsass.h"
bstring
sass_string_compile
(
char
*
input
,
int
options
)
{
char
*
sass_string_compile
(
char
*
input
,
int
options
)
{
return
"hi"
;
return
input
;
}
}
\ No newline at end of file
libsass.h
View file @
a8066e91
#include "bstr/bstrlib.h"
#include "bstr/bstrlib.h"
bstring
sass_string_compile
(
char
*
input
,
int
options
);
char
*
sass_string_compile
(
char
*
input
,
int
options
);
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