[Swift-commit] r8125 - SwiftTutorials/ATPESC_2014-08-14/swift-t/examples/05-md
wozniak at ci.uchicago.edu
wozniak at ci.uchicago.edu
Wed Aug 13 10:50:14 CDT 2014
Author: wozniak
Date: 2014-08-13 10:50:14 -0500 (Wed, 13 Aug 2014)
New Revision: 8125
Added:
SwiftTutorials/ATPESC_2014-08-14/swift-t/examples/05-md/Makefile
Log:
Copied from:
URL: https://svn.ci.uchicago.edu/svn/vdl2/demo/xsede.2014.0425/src/md
Revision: 8122
Added: SwiftTutorials/ATPESC_2014-08-14/swift-t/examples/05-md/Makefile
===================================================================
--- SwiftTutorials/ATPESC_2014-08-14/swift-t/examples/05-md/Makefile (rev 0)
+++ SwiftTutorials/ATPESC_2014-08-14/swift-t/examples/05-md/Makefile 2014-08-13 15:50:14 UTC (rev 8125)
@@ -0,0 +1,20 @@
+bin = md
+src = md.c
+
+CC = gcc
+#CFLAGS = -O3 -ffast-math
+
+$(bin): $(src)
+ $(CC) -o $@ $(bin).c -lm
+
+.PHONY: clean
+clean:
+ rm -f $(obj) $(bin)
+
+.PHONY: install
+install:
+ cp $(bin) ../../bin/$(bin)
+
+.PHONY: uninstall
+uninstall:
+ rm -f ../../bin/$(bin)
More information about the Swift-commit
mailing list