diff --git a/src/lib/views/sunlight/Makefile b/src/lib/views/sunlight/Makefile index 133dbbe..dfec52b 100644 --- a/src/lib/views/sunlight/Makefile +++ b/src/lib/views/sunlight/Makefile @@ -13,14 +13,14 @@ OUTPUT = views.so $(OUTPUT): $(OBJS) - $(CC) -nostdlib -shared -Wl,-soname,$(OUTPUT) -o $(OUTPUT) $(OBJS) + $(CC) -shared -Wl,-soname,$(OUTPUT) -o $(OUTPUT) $(OBJS) # Compile the source files .cpp.o: - $(CXX) -Wall -g -fno-builtin -fno-exceptions -DNOBOOL $(INCLUDE) -c -o $@ $< + $(CXX) -Wall -g -fno-exceptions -DNOBOOL $(INCLUDE) -c -o $@ $< .cc.o: - $(CXX) -Wall -fomit-frame-pointer -O -nobuilting -I../../lib/libc/include -I./include -S -o $@ $< + $(CXX) -Wall -fomit-frame-pointer -O -I./include -S -o $@ $< .c.o: $(CC) -Wall -O -I../../../lib/libc/include -c -o $@ $<