aboutsummaryrefslogtreecommitdiffstats
path: root/cparser/Makefile
diff options
context:
space:
mode:
authorxleroy <xleroy@fca1b0fc-160b-0410-b1d3-a4f43f01ea2e>2010-07-08 09:15:23 +0000
committerxleroy <xleroy@fca1b0fc-160b-0410-b1d3-a4f43f01ea2e>2010-07-08 09:15:23 +0000
commitc838d3368f840ca35a638f8e8f6379fbf9606783 (patch)
treed91127ddfd4adf4fe08f4efb977dad52b7ae9dbc /cparser/Makefile
parent118c148ec89dc0b53bb377cf637cfdcd800f06e5 (diff)
downloadcompcert-c838d3368f840ca35a638f8e8f6379fbf9606783.tar.gz
compcert-c838d3368f840ca35a638f8e8f6379fbf9606783.zip
Preliminary support for gcc-style __attribute__ over types
git-svn-id: https://yquem.inria.fr/compcert/svn/compcert/trunk@1377 fca1b0fc-160b-0410-b1d3-a4f43f01ea2e
Diffstat (limited to 'cparser/Makefile')
-rw-r--r--cparser/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/cparser/Makefile b/cparser/Makefile
index 837bda87..59d4b474 100644
--- a/cparser/Makefile
+++ b/cparser/Makefile
@@ -31,13 +31,13 @@ install:
cp -p Cparser.cmi cparser.cma cparser.cmxa cparser.a libcparser.a dllcparser.so $(LIBDIR)
cparser: $(COBJS) $(NOBJS) Main.cmx
- $(OCAMLOPT) -o cparser $(COBJS) $(NOBJS) Main.cmx
+ $(OCAMLOPT) -o cparser str.cmxa $(COBJS) $(NOBJS) Main.cmx
clean::
rm -f cparser
cparser.byte: $(COBJS) $(BOBJS) Main.cmo
- $(OCAMLC) -custom -o cparser.byte $(COBJS) $(BOBJS) Main.cmo
+ $(OCAMLC) -custom -o cparser.byte str.cma $(COBJS) $(BOBJS) Main.cmo
clean::
rm -f cparser