From becc45a0a1faf276382f26044e46927ecbb2c75a Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Tue, 9 Mar 2010 09:29:07 +0200 Subject: Rename plugin to odb --- makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'makefile') 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 -- cgit v1.1