# HG changeset patch # User Jonathan Knowles # Date 1282568214 -3600 # Node ID 10c905260ad67bb59393cc2ca7708020f4a76f2f # Parent fb54e065e83269c2784802516c75a5ecfe9ba941 This patch allows future patches to independently add modules to stdext without causing conflicts. Signed-off-by: Jonathan Knowles diff -r fb54e065e832 -r 10c905260ad6 stdext/Makefile --- a/stdext/Makefile Mon Aug 23 13:56:23 2010 +0100 +++ b/stdext/Makefile Mon Aug 23 13:56:54 2010 +0100 @@ -20,10 +20,42 @@ 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