changeset 14:b1c36563cbed

fixed nocompile target
author unknown
date Fri, 08 Oct 2004 07:35:51 +0000
parents 5f283cf3777a
children fa94281987cf
files Makefile
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/Makefile	Fri Oct 08 07:33:45 2004 +0000
+++ b/Makefile	Fri Oct 08 07:35:51 2004 +0000
@@ -59,10 +59,10 @@
 nocompile : $(dest_nocompile)
 
 %.$(ext_nocompile) : %.$(ext_source)
-	@if $(DMD) $(DFLAGS) -of$@ $< $(to_log); then $(ECHO) "XPASS: $(subst .$(ext_nocompile),,$@)"; $(RM) $@; else $(ECHO) "FAIL:  $(subst .$(ext_nocompile),,$@)"; $(TOUCH) $@; fi
+	@if $(DMD) -c -of$@ $< $(to_log); then $(ECHO) "XPASS: $(subst .$(ext_nocompile),,$@)"; $(RM) $@; else $(ECHO) "FAIL:  $(subst .$(ext_nocompile),,$@)"; $(TOUCH) $@; fi
 
 %.$(ext_nocompile) : %.$(ext_source_html)
-	        @if $(DMD) $(DFLAGS) -of$@ $< $(to_log); then $(ECHO) "XPASS: $(subst .$(ext_nocompile),,$@)"; $(RM) $@; else $(ECHO) "FAIL:  $(subst .$(ext_nocompile),,$@)"; $(TOUCH) $@; fi
+	        @if $(DMD) -c -of$@ $< $(to_log); then $(ECHO) "XPASS: $(subst .$(ext_nocompile),,$@)"; $(RM) $@; else $(ECHO) "FAIL:  $(subst .$(ext_nocompile),,$@)"; $(TOUCH) $@; fi
 
 
 compile : $(dest_compile)