6ec7d6368c
asdlGen generates data structure and serializer code from ASDL specifications [1]. It is especially helpful for exchanging tree like data structures between different programming languages. Currently C, C++, Haskell, Java, Icon, OCaml and SML are supported. Although the asdlGen project itself seems no longer actively maintained, ASDL is "alive" as it is used (at least) in the Moby [2] and Python [3,4] compilers. The port optionally installs a simple usage example [5] for all seven programming languages. I developed it primarily to test the port, but it could be helpful to users of asdlGen to get a quicker start, especially if a less familiar programming language is involved in their project. Reviewers/committers can easily make use of it via the "test-demo" target. PR: ports/117703 Submitted by: Johannes 5 Joemann <joemann@beefree.free.de>
20 lines
429 B
Text
20 lines
429 B
Text
--- Makefile.in.orig Thu Mar 23 17:06:31 2006
|
|
+++ Makefile.in Tue Sep 11 08:56:38 2007
|
|
@@ -8,7 +8,7 @@
|
|
INSTALL_BINDIR = $(PREFIX)/bin
|
|
INSTALL_HEAPDIR = $(INSTALL_BINDIR)/.heap
|
|
INSTALL_WRAPPER = @top_srcdir@/bin/install-sml-wrapper.sh
|
|
-SML = @SMLNJ_CMD@
|
|
+SML = @SMLNJ@
|
|
ML_BUILD = @ML_BUILD@
|
|
|
|
PROGRAM = asdlGen
|
|
@@ -20,7 +20,7 @@
|
|
|
|
INSTALL=@INSTALL@
|
|
|
|
-build: $(TARGET)
|
|
+build: $(HEAP)
|
|
|
|
$(HEAP):
|
|
(cd $(SRCDIR); \
|