summaryrefslogtreecommitdiff
path: root/gmk-default.scm
diff options
context:
space:
mode:
authorPaul Smith <psmith@gnu.org>2013-02-25 01:38:36 -0500
committerPaul Smith <psmith@gnu.org>2013-02-25 01:38:36 -0500
commit5058a94ee717d96285da20423324af3478df175d (patch)
treefa24d78c8f51c77371464d6c03b3aaf886c8f86a /gmk-default.scm
parent4baf9ab4564447355b5748d1375959e817771d17 (diff)
downloadgunmake-5058a94ee717d96285da20423324af3478df175d.tar.gz
Expand the loadable object support.
Provide a simple API for loaded objects to interact with GNU make. I still won't guarantee that this API won't change but it's much closer to something that's supported and provides easy-to-use interfaces with a public header file.
Diffstat (limited to 'gmk-default.scm')
-rw-r--r--gmk-default.scm4
1 files changed, 0 insertions, 4 deletions
diff --git a/gmk-default.scm b/gmk-default.scm
index 84a2114..d33dfb2 100644
--- a/gmk-default.scm
+++ b/gmk-default.scm
@@ -45,10 +45,6 @@
(walk x)
(string-join (reverse! acc))))
-;; eval (GNU make eval) the input string S
-(define (gmk-eval s)
- (gmk-expand (format #f "$(eval ~a)" (obj-to-str s))))
-
;; Return the value of the GNU make variable V
(define (gmk-var v)
(gmk-expand (format #f "$(~a)" (obj-to-str v))))