aboutsummaryrefslogtreecommitdiff
path: root/makefile
diff options
context:
space:
mode:
Diffstat (limited to 'makefile')
-rw-r--r--makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/makefile b/makefile
index 0fb0966..9a5fab9 100644
--- a/makefile
+++ b/makefile
@@ -4,7 +4,7 @@ PLUGIN_INC := $(shell $(GXX) -print-file-name=plugin)
src := plugin.cxx
obj := $(src:.cxx=.o)
-sunrise.so: $(obj)
+odb.so: $(obj)
$(GXX) -shared -o $@ $(CXXFLAGS) $(LDFLAGS) $^ $(LIBS)
%.o: %.cxx
@@ -13,11 +13,11 @@ sunrise.so: $(obj)
# Test.
#
.PHONY: test
-test: sunrise.so test.cxx
- $(GXX) -x c++ -S -fplugin=./sunrise.so test.cxx
+test: odb.so test.cxx
+ $(GXX) -x c++ -S -fplugin=./odb.so test.cxx
# Clean.
#
.PHONY: clean
clean:
- rm -f *.o sunrise.so
+ rm -f *.o odb.so