aboutsummaryrefslogtreecommitdiff
path: root/makefile
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2010-03-09 09:59:54 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2010-03-09 09:59:54 +0200
commit82208a8315b3d2ec355e3329aa588eea2b064aa6 (patch)
treefa401388211ccba8d0cc524aa82ada15c195638e /makefile
parentbecc45a0a1faf276382f26044e46927ecbb2c75a (diff)
Reorganize the directory structure
Diffstat (limited to 'makefile')
-rw-r--r--makefile23
1 files changed, 0 insertions, 23 deletions
diff --git a/makefile b/makefile
deleted file mode 100644
index 9a5fab9..0000000
--- a/makefile
+++ /dev/null
@@ -1,23 +0,0 @@
-GXX=g++-4.5
-PLUGIN_INC := $(shell $(GXX) -print-file-name=plugin)
-
-src := plugin.cxx
-obj := $(src:.cxx=.o)
-
-odb.so: $(obj)
- $(GXX) -shared -o $@ $(CXXFLAGS) $(LDFLAGS) $^ $(LIBS)
-
-%.o: %.cxx
- $(GXX) -c -o $@ -fPIC $(CPPFLAGS) -I$(PLUGIN_INC)/include $(CXXFLAGS) $<
-
-# Test.
-#
-.PHONY: test
-test: odb.so test.cxx
- $(GXX) -x c++ -S -fplugin=./odb.so test.cxx
-
-# Clean.
-#
-.PHONY: clean
-clean:
- rm -f *.o odb.so