From: Jonathan Knowles Date: Mon, 23 Aug 2010 12:56:54 +0000 (+0100) Subject: This patch allows future patches to independently add modules to stdext without causi... X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=df800481a5159e2f2c0faa93b278d5ee902545e2;p=xcp%2Fxen-api-libs.git This patch allows future patches to independently add modules to stdext without causing conflicts. Signed-off-by: Jonathan Knowles --- diff --git a/stdext/Makefile b/stdext/Makefile index f9f4fcd..09952d8 100644 --- a/stdext/Makefile +++ b/stdext/Makefile @@ -20,10 +20,42 @@ FEPP = camlp4o -I ../rpc-light -I $(shell ocamlfind query type-conv) pa_type_con OCAML_TEST_INC = -I $(shell ocamlfind query oUnit) OCAML_TEST_LIB = $(shell ocamlfind query oUnit)/oUnit.cmxa -STDEXT_OBJS = fun opt listext filenameext stringext arrayext hashtblext pervasiveext threadext ring \ - qring fring bigbuffer unixext range vIO trie config date encodings fe fecomms \ - forkhelpers gzip sha1sum zerocheck base64 backtrace tar mapext os either \ - lazyList extentlistSet set_test +STDEXT_OBJS = \ + fun \ + opt \ + listext \ + filenameext \ + stringext \ + arrayext \ + hashtblext \ + pervasiveext \ + threadext \ + ring \ + qring \ + fring \ + bigbuffer \ + unixext \ + range \ + vIO \ + trie \ + config \ + date \ + encodings \ + fe \ + fecomms \ + forkhelpers \ + gzip \ + sha1sum \ + zerocheck \ + base64 \ + backtrace \ + tar \ + mapext \ + os \ + either \ + lazyList \ + extentlistSet \ + set_test INTF = $(foreach obj, $(STDEXT_OBJS),$(obj).cmi) LIBS = stdext.cma stdext.cmxa