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
c2bcb21b
Commit
c2bcb21b
authored
Jan 31, 2012
by
Hampton Catlin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
built a simple binary
parent
6a412791
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
23 additions
and
0 deletions
+23
-0
Makefile
Makefile
+15
-0
libsass.c
src/libsass.c
+8
-0
No files found.
Makefile
View file @
c2bcb21b
CC
=
gcc
CFLAGS
=
-I
.
BIN
=
bin/
BUILD
=
build/
SRC
=
src/
%.o
:
%.c $(DEPS)
$(CC)
-c
-o
$@
$<
$(CFLAGS)
libsass
:
libsass.o
$(CC)
-o
$(BIN)
main libsass.o
libsass.o
:
$(CC)
-c
-g
$(SRC)
libsass.c
\ No newline at end of file
src/libsass.c
View file @
c2bcb21b
#include <stdio.h>
int
main
()
{
printf
(
"I love Sass!
\n
"
);
return
0
;
}
\ No newline at end of file
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