diff options
author | Paul Joseph Davis <davisp@apache.org> | 2009-11-26 19:29:35 +0000 |
---|---|---|
committer | Paul Joseph Davis <davisp@apache.org> | 2009-11-26 19:29:35 +0000 |
commit | c452048cae6ff8b275e72a2f4b590ccaeebc35ba (patch) | |
tree | 1f3948d9b61173c0b4a81557708aad0f6e4de763 /src/couchdb/Makefile.am | |
parent | 683834888cfad2e6da1564161eda3447620374f5 (diff) |
Move all C code to src/couchdb/priv
Shuffling bits around to conform to Erlang conventions.
git-svn-id: https://svn.apache.org/repos/asf/couchdb/trunk@884671 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/couchdb/Makefile.am')
-rw-r--r-- | src/couchdb/Makefile.am | 43 |
1 files changed, 0 insertions, 43 deletions
diff --git a/src/couchdb/Makefile.am b/src/couchdb/Makefile.am index 5842521b..9e909964 100644 --- a/src/couchdb/Makefile.am +++ b/src/couchdb/Makefile.am @@ -12,38 +12,12 @@ SUBDIRS = priv -ICU_LOCAL_FLAGS = $(ICU_LOCAL_CFLAGS) $(ICU_LOCAL_LDFLAGS) -if WINDOWS -ICU_LOCAL_LIBS=-licuuc -licudt -licuin -else -ICU_LOCAL_LIBS=-licuuc -licudata -licui18n -endif - # devdocdir = $(localdocdir)/developer/couchdb couchlibdir = $(localerlanglibdir)/couch-$(version) -couchprivdir = $(couchlibdir)/priv -couchprivlibdir = $(couchlibdir)/priv/lib couchincludedir = $(couchlibdir)/include couchebindir = $(couchlibdir)/ebin -couchprivlib_LTLIBRARIES = couch_erl_driver.la -couch_erl_driver_la_SOURCES = couch_erl_driver.c -couch_erl_driver_la_LDFLAGS = -module -avoid-version $(ICU_LOCAL_FLAGS) -couch_erl_driver_la_CFLAGS = $(ICU_LOCAL_FLAGS) -couch_erl_driver_la_LIBADD = $(ICU_LOCAL_LIBS) - -locallibbin_PROGRAMS = couchjs -couchjs_SOURCES = couch_js.c curlhelper.c curlhelper.h -couchjs_LDFLAGS = $(CURL_LDFLAGS) -couchjs_CFLAGS = $(CURL_CFLAGS) -couchjs_LDADD = $(CURL_LDFLAGS) @JSLIB@ - -if WINDOWS -couch_erl_driver_la_LDFLAGS += -no-undefined -endif - couchinclude_DATA = couch_db.hrl - couchebin_DATA = $(compiled_files) # dist_devdoc_DATA = $(doc_base) $(doc_modules) @@ -219,20 +193,3 @@ endif %.beam: %.erl couch_db.hrl $(ERLC) $(ERLC_FLAGS) ${TEST} $<; -install-data-hook: - if test -f "$(DESTDIR)$(couchprivlibdir)/couch_erl_driver"; then \ - rm -f "$(DESTDIR)$(couchprivlibdir)/couch_erl_driver.so"; \ - cd "$(DESTDIR)$(couchprivlibdir)" && \ - $(LN_S) couch_erl_driver couch_erl_driver.so; \ - fi -if WINDOWS - $(INSTALL) $(ICU_LOCAL_BIN)/icuuc42.dll $(bindir) - $(INSTALL) $(ICU_LOCAL_BIN)/icudt42.dll $(bindir) - $(INSTALL) $(ICU_LOCAL_BIN)/icuin42.dll $(bindir) - $(INSTALL) $(JS_LIB_BINARY) $(bindir) -endif - -uninstall-local: - if test -f "$(DESTDIR)$(couchprivlibdir)/couch_erl_driver"; then \ - rm -f "$(DESTDIR)$(couchprivlibdir)/couch_erl_driver.so"; \ - fi |