From e62da1cffe38e72a832ea39c0e293f4db9848cf1 Mon Sep 17 00:00:00 2001 From: Mark Wooding Date: Sun, 20 Jun 2010 13:02:30 +0100 Subject: [PATCH] Makefile: Tweak various compiler options for quieter builds. --- Makefile | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/Makefile b/Makefile index 11e3da6..7a4f553 100644 --- a/Makefile +++ b/Makefile @@ -97,12 +97,12 @@ haskell-fringe: haskell-fringe.o ### Icon. ICONT = icont -IFLAGS = -u -fa +IFLAGS = -u -s -fa LANGS += icon SOURCES += icon-fringe.icn icon-fringe: icon-fringe.icn - $(call v_echo,ICONT)$(ICONT) -o $@ $^ + $(call v_echo,ICONT)$(ICONT) $(IFLAGS) -o $@ $^ ###-------------------------------------------------------------------------- ### Common Lisp. @@ -111,8 +111,8 @@ CLEANFILES += *.core *.fasl .SUFFIXES: .lisp .fasl .lisp.fasl: - $(call v_echo,CL)sbcl --eval \ - '(quit :unix-status (if (compile-file "$<") 0 1))' + $(call v_echo,CL)sbcl --noinform --eval \ + '(quit :unix-status (if (compile-file "$<" :verbose nil :print nil) 0 1))' LANGS += cl SOURCES += cl-fringe.lisp @@ -124,9 +124,10 @@ cl-fringe: cl-fringe.fasl ### F#. FSC = fsc +FSCFLAGS = CLEANFILES += *.exe .SUFFIXES: .fs .exe -.fs.exe:; $(call v_echo,FSC)$(FSC) -o $@ $< +.fs.exe:; $(call v_echo,FSC)$(FSC) --nologo $(FSCFLAGS) -o $@ $< LANGS += f\# SOURCES += f\#-fringe.fs -- 2.11.0