Commit 1df5371c by Aaron Leung

Fixing the Makefile so it can build a shared library on OS X.

parent f02faf72
......@@ -12,7 +12,7 @@ all: $(OBJECTS)
ar rvs libsass.a $(OBJECTS)
shared: $(OBJECTS)
gcc -shared -o libsass.so *.o
$(CC) -shared -o libsass.so *.o
.cpp.o:
$(CC) $(CFLAGS) $< -o $@
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment