META file.
authorrich <rich>
Wed, 27 Sep 2006 12:10:18 +0000 (12:10 +0000)
committerrich <rich>
Wed, 27 Sep 2006 12:10:18 +0000 (12:10 +0000)
.cvsignore
MANIFEST
META.in [new file with mode: 0644]
Makefile

index aaded14..f4687eb 100644 (file)
@@ -6,3 +6,4 @@
 *.opt
 test_ancient.out1
 test_ancient.out2
 *.opt
 test_ancient.out1
 test_ancient.out2
+META
\ No newline at end of file
index 173daa4..64736e0 100644 (file)
--- a/MANIFEST
+++ b/MANIFEST
@@ -6,4 +6,5 @@ ancient.mli
 Makefile
 Makefile.config
 MANIFEST
 Makefile
 Makefile.config
 MANIFEST
+META.in
 test_ancient.ml
 test_ancient.ml
diff --git a/META.in b/META.in
new file mode 100644 (file)
index 0000000..7a1b5be
--- /dev/null
+++ b/META.in
@@ -0,0 +1,6 @@
+name="@PACKAGE@"
+version="@VERSION@"
+description="Mark objects as 'ancient' so they are taken out of the OCaml heap."
+requires=""
+archive(byte)="ancient.cma"
+archive(native)="ancient.cmxa"
index 24a0ce9..491bb0e 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,5 +1,5 @@
 # Mark objects as 'ancient' so they are taken out of the OCaml heap.
 # Mark objects as 'ancient' so they are taken out of the OCaml heap.
-# $Id: Makefile,v 1.2 2006-09-27 12:09:02 rich Exp $
+# $Id: Makefile,v 1.3 2006-09-27 12:10:18 rich Exp $
 
 include Makefile.config
 
 
 include Makefile.config
 
@@ -40,9 +40,9 @@ test_ancient.opt: ancient.cmxa test_ancient.cmx
 # Findlib META file.
 
 META:  META.in Makefile.config
 # Findlib META file.
 
 META:  META.in Makefile.config
-       $(SED)  -e 's/@PACKAGE@/$(PACKAGE)/' \
-               -e 's/@VERSION@/$(VERSION)/' \
-               < $< > $@
+       sed  -e 's/@PACKAGE@/$(PACKAGE)/' \
+            -e 's/@VERSION@/$(VERSION)/' \
+            < $< > $@
 
 # Clean.
 
 
 # Clean.