diff options
author | Anas Nashif <anas.nashif@intel.com> | 2012-10-30 16:00:08 -0700 |
---|---|---|
committer | Anas Nashif <anas.nashif@intel.com> | 2012-10-30 16:00:08 -0700 |
commit | 7edf6e8ac0df452d4af7a15da08609821b0b3c0f (patch) | |
tree | 1cf0f01d9b6574972173e3cd40b62e4ebeaaaaae /mod_db4/Makefile.in | |
download | db4-7edf6e8ac0df452d4af7a15da08609821b0b3c0f.tar.gz db4-7edf6e8ac0df452d4af7a15da08609821b0b3c0f.tar.bz2 db4-7edf6e8ac0df452d4af7a15da08609821b0b3c0f.zip |
Imported Upstream version 4.8.30.NCupstream/4.8.30.NC
Diffstat (limited to 'mod_db4/Makefile.in')
-rw-r--r-- | mod_db4/Makefile.in | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/mod_db4/Makefile.in b/mod_db4/Makefile.in new file mode 100644 index 00000000..37e1c038 --- /dev/null +++ b/mod_db4/Makefile.in @@ -0,0 +1,26 @@ +# +# Copyright (c) 2004-2009 Oracle. All rights reserved. +# +# http://www.apache.org/licenses/LICENSE-2.0.txt +# + +APXS=@APXS@ +CXXFLAGS=@CXXFLAGS@ +CPPFLAGS=@CPPFLAGS@ +LDFLAGS=@LDFLAGS@ +LIBS=@LIBS@ + +SOURCES=mod_db4.c sem_utils.c skiplist.c utils.c mm_hash.c + +all: mod_db4.so + +mod_db4.so: $(SOURCES) + $(APXS) -c -S CC=$(CXX) $(LDFLAGS) $(CPPFLAGS) $(CXXFLAGS) $(SOURCES) $(LIBS) + +install: mod_db4.so + $(APXS) -i mod_db4.so + cp mod_db4_export.h `$(APXS) -q INCLUDEDIR`/ + chmod a+r `$(APXS) -q INCLUDEDIR`/mod_db4_export.h + +clean: + rm -f *.o *.a *.so *.lo *.tlo *.to config.cache config.log *.out core |