aboutsummaryrefslogtreecommitdiff
path: root/makefile
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2010-03-09 09:29:07 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2010-03-09 09:29:07 +0200
commitbecc45a0a1faf276382f26044e46927ecbb2c75a (patch)
tree4a63697f21cbdeb2a9be50df897b3c40a25d4a2c /makefile
parentcbdf12aa5110bf482ffda16a9d11f62bc837a0ed (diff)
Rename plugin to odb
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