[MLton-commit] r5182

Vesa Karvonen vesak at mlton.org
Tue Feb 13 04:42:53 PST 2007


Removed the redundant at variable.

----------------------------------------------------------------------

U   mltonlib/trunk/com/ssh/windows/unstable/Makefile

----------------------------------------------------------------------

Modified: mltonlib/trunk/com/ssh/windows/unstable/Makefile
===================================================================
--- mltonlib/trunk/com/ssh/windows/unstable/Makefile	2007-02-13 12:35:24 UTC (rev 5181)
+++ mltonlib/trunk/com/ssh/windows/unstable/Makefile	2007-02-13 12:42:52 UTC (rev 5182)
@@ -19,8 +19,6 @@
 
 lib-file := libwin-$(target-id).lib
 
-at :=
-
 .PHONY : all clean help
 
 help :
@@ -32,24 +30,24 @@
 all : $(lib-file) $(gen-dir)/nlffi/lib.mlb
 
 clean :
-	$(at)rm -rf $(bin-dir) $(gen-dir)/nlffi $(lib-file)
+	rm -rf $(bin-dir) $(gen-dir)/nlffi $(lib-file)
 
 $(lib-file) : $(lib-o-files)
-	$(at)ar cr $@ $^
+	ar cr $@ $^
 
 $(gen-dir)/nlffi/lib.mlb : $(ffi-h-files)
-	$(at)mkdir -p $(@D)
-	$(at)mlnlffigen -dir $(@D)       \
-	                -mlbfile $(@F)   \
-	                -linkage static  \
-	                $^
+	mkdir -p $(@D)
+	mlnlffigen -dir $(@D)       \
+	           -mlbfile $(@F)   \
+	           -linkage static  \
+	           $^
 
 $(bin-dir)/%.o : $(lib-dir)/%.c $(lib-h-files) $(ffi-h-files)
-	$(at)mkdir -p $(@D)
-	$(at)gcc -Wall     \
-	         -Werror   \
-	         -pedantic \
-	         -std=c99  \
-	         -c        \
-	         -o $@     \
-	         $<
+	mkdir -p $(@D)
+	gcc -Wall     \
+	    -Werror   \
+	    -pedantic \
+	    -std=c99  \
+	    -c        \
+	    -o $@     \
+	    $<




More information about the MLton-commit mailing list